|
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "http://www.baidu.com/");
selenium.start();
}
public void testUntitled() throws Exception {
selenium.open("/");
selenium.type("kw", "selenium");
selenium.click("su");
selenium.waitForPageToLoad("30000");
verifyTrue(selenium.isTextPresent("selenium_百度百科"));
selenium.click("xpath=//table[@id='1']/tbody/tr/td/a");
}
public void tearDown() throws Exception {
selenium.stop();
super.tearDown();
}
代码就这么多,但是在运行到verifyTrue(selenium.isTextPresent("selenium_百度百科"));
的时候就运行不下去了,就算删掉这行,下一样也不运行,也不报错,有人可以帮忙指导下么?
谢谢回复,我这个就是一个做一个简单的测试例子,在firefox里面录制
(1)进入bairu
(2) 搜索selenium
(3) 点击搜索
(4) 点击第一个搜到的链接,会自己开个页面
想说一下在firefox里面回放以上4步,第4步回放不来,如果可以你也试试
然后变成java 放到eclipse里面执行,也是第4步回放不来
[ 本帖最后由 gaoqiu 于 2010-2-24 14:18 编辑 ] |
|