TA的每日心情 | 慵懒 2016-5-6 09:07 |
---|
签到天数: 9 天 连续签到: 4 天 [LV.3]测试连长
|
本人使用win 7 32位操作系统,IE浏览器版本是IE 8,搭建好环境后,使用java语言开发,用selenium webdriver进行自动化测试,编写后在firefox浏览器上运行没有问题,但换用IE浏览器就出现以下问题:
1、System.setProperty("webdriver.ie.driver", "C://Program Files/Internet Explorer/iexplore.exe");
WebDriver driver = new InternetExplorerDriver();
driver.manage().timeouts().implicitlyWait(5,TimeUnit.SECONDS);
driver.manage().window().maximize();
// 获取对象实例
// Navigation navigation = driver.navigate();
// navigation.to("http://10.1.30.211:8080/zichan/a/");
driver.get("http://10.1.30.211:8080/zichan/a/");
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
Thread.sleep(5000);
System.out.println("检查是否成功进入房地产资产管理软件系统首页:"+"http://10.1.30.211:8080/zichan/a/".equals(driver.getCurrentUrl()));
运行系统会报“Exception in thread "main" org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.”这样的错误。
IE浏览器打开的是“http://--port=35562/”这样的网址,和我预期的网址“http://10.1.30.211:8080/zichan/a/”根本不相同,这是什么原因,应该怎么解决?试过网上的方法,都不行。重安装IE也是问题一样存在,如何解决这样的问题? |
|