TA的每日心情 | 无聊 2014-12-7 21:48 |
---|
签到天数: 2 天 连续签到: 1 天 [LV.1]测试小兵
|
小弟使用firefox,selenium IDE录制脚本,转化为JAVA junit4,使用firefox可以 正常回放脚本,但是
将浏览器改为chrome,能打开chrome浏览器,但是是本地的数据,附上代码:
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe", "http://www.baidu.com");
selenium.start();
}
@Test
public void testUntitled() throws Exception {
selenium.open("/");
selenium.click("css=body");
selenium.windowMaximize();
selenium.type("id=kw", "我是123");
selenium.click("id=su");
}
红色部分如改为Firefox,就可以正常打开;
若是chrome,则打开本地file:///C:/Users/用户名/AppData/Local/Temp/下的内容
请遇到问题的帮助一下,感谢! |
|