C# selenium 对远程 Web 驱动程序服务器的 URL 的 HTTP 请求在 60 秒后超时

C# selenium HTTP request to the remote web driver server for URL timed out after 60 seconds

Chrome 驱动程序停止为 Chrome 浏览器版本 55 使用最新的 Chrome 驱动程序 2.24 和 Web 驱动程序 2.48。

我遇到错误 "HTTP request to the remote web driver server for URL timed out after 60 seconds"

几个月前我遇到了同样的问题,我遵循了与提到的相同的建议 here,直到 chrome 版本 54 之前它都运行良好。

你能推荐 Chrome 版本 55

注意:它在本地工作正常,在 IIS 中托管时不工作

使用您下载的独立包中的 Chrome 而不是您的系统 installation.You 可以通过以下方式做到这一点:

ChromeOptions options = new ChromeOptions();
options.BinaryLocation = @"path\to\the\standalone\chrome.exe"; 
  // chrome installation exe

对于 : more