我正在尝试使用IE中的 WebDriverBackedSelenium 运行测试脚本。我在 firefox 和 chrome 上测试了相同的脚本,它运行正常。
以下是我在设置方法
中的操作 System.setProperty("webdriver.ie.driver", "C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe");
WebDriver driver = new InternetExplorerDriver();
selenium1 = new WebDriverBackedSelenium(driver, "http://www.example.com");
当我运行此脚本时,IE浏览器窗口打开,几次后我收到以下错误:
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.
Build info: version: '2.31.0', revision: '1bd294d', time: '2013-02-27 20:53:56'
System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.6.0_25'
同样在浏览器中
http://--port=24284/
显示。
我正在使用 IE 9 。 请帮忙。
答案 0 :(得分:2)