我尝试用Selenium Webdriver
启动chrome,使用了以下代码:
System.setProperty("webdriver.chrome.driver",
"C:/Program Files (x86)/Google/Chrome/Application/chrome.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.yahoo.com");
Chrome浏览器打开但无法继续。以下错误的原因可能是什么:
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.
5条答案
按热度按时间hc8w905p1#
您没有正确启动驱动程序
webdriver.chrome.driver
应该是您下载的驱动程序的路径,而不是Chrome的物理**位置。v2g6jxz62#
首先,您需要从这个链接下载chrome驱动程序文件,然后将其JAR导入eclipse中的包。
Download the link from here
然后,您必须将其导入到程序中。
然后创建一个驱动程序示例
下载chrome的外部JAR
日 eclipse :右键单击相应的包(在包资源管理器中)并单击属性。2转到Java构建路径并添加外部jar。3现在添加chrome的jar文件。4然后按照我在ans中写的步骤导入chrome驱动程序并创建示例
按照照片中的步骤操作。1)
从这里选择你的文件并右键单击
wmomyfyw3#
下面的代码片段展示了如何使用selenium webdriver打开chrome浏览器。
u91tlkcl4#
使用最新版本的ChromeDriver。
资料来源|
lymnna715#
您需要先设置浏览器设置。如果有帮助,请尝试以下代码:
您需要通过将鼠标悬停在错误行上来导入文件。