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

时间:2016-12-21 09:09:52

标签: c# google-chrome selenium selenium-webdriver iis-6

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

我收到错误" HTTP请求到远程Web驱动程序服务器的URL在60秒后超时"

几个月前我遇到了同样的问题,我按照提到的here提出了同样的建议,直到第54版铬版本才运行良好。

您能推荐Chrome版本55

吗?

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

1 个答案:

答案 0 :(得分:3)

使用您下载的独立软件包中的Chrome而不是系统安装。您可以通过以下方式执行此操作:

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

for:more