selenium+eclipse chrome启动打开本地,不能打开链接
小弟使用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/下的内容
请遇到问题的帮助一下,感谢! 顶一下,求帮助:) 需要设置ChromeDriver路径 driver的问题吧。。。 ChromeDriver路径不正确 ie,chrome浏览器的driverServer是由他们自己管理的,所以需要我们自己下载相应的驱动后配置下 你这个是Selenium RC的代码吧,建议你不要学这个了,以后Selenium RC是要被淘汰的,尽快转换成webdriver吧!
页:
[1]