设置Selenium和ChromeDriver以无头模式运行

我正在尝试使用xUnit,Selenium和Chrome Canary(无头模式)运行浏览器测试,但始终出现此错误

OpenQA.Selenium.WebDriverException
The HTTP request to the remote WebDriver server for URL 
http://localhost:58692/session timed out after 60 seconds.

这是我的代码

var chromeOptions = new ChromeOptions
    {
        BinaryLocation = @"C:\Users\<USERNAME>\AppData\Local\Google\Chrome SxS\Application\chrome.exe",
        DebuggerAddress = "127.0.0.1:9222"
    };

chromeOptions.AddArguments("no-sandBox", "headless", "disable-gpu");
_driver = new ChromeDriver(chromeOptions) {Url = Url};

我是C#的新手,所以不确定我是在做明显错误的事情,还是只是缺少设置.仔细检查以上错误告诉我,我需要设置调试器地址并使用no-sandBox标志,但似乎都没有帮助.

使用这些版本:

selenium 3.4
chromedriver 2.29
xunit 2.2

解决方法:

取出调试器地址即可正常工作.

var chromeOptions = new ChromeOptions
{
    BinaryLocation = @"C:\Users\<USERNAME>\AppData\Local\Google\Chrome SxS\Application\chrome.exe",
};

相关文章

转载地址:https://www.cnblogs.com/mini-monkey/p/12104821...
web自动化测试过程中页面截图相对比较简单,可以直接使用sel...
目录前言一、Selenium简介二、浏览器驱动1.浏览器驱动参考2....
一、iframe的含义:iframe是HTML中框架的一种形式,在对界面...
转载请注明出处❤️作者:测试蔡坨坨原文链接:caituotuo.to...
'''##**认识selenium**​**下载:pipinstall...