TA的每日心情 | 开心 2018-2-24 14:54 |
---|
签到天数: 12 天 连续签到: 1 天 [LV.3]测试连长
|
导出的文件内容:
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class tests {
private Selenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox3 C:/Program Files (x86)/Mozilla Firefox/firefox.exe","http://www.baidu.com/");
selenium.start();
}
@Test
public void testTests() throws Exception {
selenium.open("/");
selenium.type("id=kw", "selenium");
selenium.click("id=su");
selenium.waitForPageToLoad("30000");
selenium.click("id=kw");
selenium.type("id=kw", "QTP");
selenium.click("id=su");
selenium.waitForPageToLoad("30000");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
每次点击运行后火狐都会弹出一个下图的选项:
点击下一步后程序继续运行就报错了:
使用的包:
版本:selenium-server-1.0.3
希望得到大家的帮助,本人刚接触,小白一个!
|
|