你能给出一些建议吗,为什么我要跟踪WebDriverException:"类型' OpenQA.Selenium.WebDriverException'发生在WebDriver.dll中但未在用户代码中处理附加信息:对URL http://localhost:61516/session的远程WebDriver服务器的HTTP请求在60秒后超时。"这是我的Chrome驱动程序设置:
var options = new ChromeOptions();
options.BinaryLocation = @"C:\Users\...\Shell.exe";
return new ChromeDriver(options);
我在任务管理器中看到2个带有shell的进程,而在内存消耗增加的情况下看到了ScriptedSandbox64.exe。 60秒后,我得到了WebDriverException。 (C#,Selenium,Electron)。提前谢谢。
非常接近this issue.