私はセレンが初めてで、次を試しています
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 タブが開いていますが、URL「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
Google Webページをロードする代わりに、「X」(変更中)でlocalhostに接続しようとしているのはなぜですか。
Firefoxでも同じ問題が発生するこの問題を解決するにはどうすればよいですか。