Selenium Geckodriver 没有打开 URL

Selenium Geckodriver does not open the URL

我想在 Firefox 加载后打开一个页面:

FirefoxOptions options = new FirefoxOptions();
options.AddArguments("-profile", @"C:\SomeFolder\firefox" + @"\" + profilename + @"\");
IWebDriver driver = new FirefoxDriver(options);
Thread.Sleep(2000); //I've tried without Threed.Sleep too)
driver.Navigate().GoToUrl("http://www.google.com/");

Firefox 打开,但 URL 未加载。我没有收到任何错误代码。

更新: 当我不加载任何配置文件时,URL 加载正常。奇怪...

改为driver.get("http://www.google.com/"); 您可以使用 driver.timeOut()

调整 webdriver 等待