我是硒的新手,尝试以下
File f = new File("/usr/bin/google-chrome");
System.setProperty("webdriver.chrome.driver", f.getAbsolutePath());
WebDriver driver = new ChromeDriver();
//wait = new WebDriverWait(driver, 30);
driver.get("http://www.google.com");
空的Chrome标签页已打开,但网址“www.google.com”未加载。几秒钟后出现错误
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.
Caused by: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://localhost:11037/status] to be available after 20002 ms
为什么尝试连接“X”(更改)的localhost而不是加载谷歌网页。
我怎样才能克服这个问题,同时也会出现与Firefox相同的问题。
答案 0 :(得分:1)
UnreachableBrowserException
通常在代码无法与浏览器连接时发生。这可能是因为您的驱动程序可执行文件或浏览器可执行文件。
请检查 -
如果存在问题,请在例外情况中提及构建信息和系统信息。
答案 1 :(得分:0)
System.setProperty("webdriver.chrome.driver","your path to chrome driver.exe file ");
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com");
试试这个
我的路径是//users//hari//chromedriver.exe