从Chrome 57开始,您有了无用的论点:var options = new ChromeOptions();options.AddArguments("headless");using (IWebDriver driver = new ChromeDriver(options)){ // the rest of your test}Chrome的无头模式比UI版本的性能高30.97%。其他无头驱动程序PhantomJS的性能比Chrome的无头模式好34.92%。PhantomJSDriverusing (IWebDriver driver = new PhantomJSDriver()){ // the rest of your test}Mozilla Firefox的无头模式性能比UI版本好3.68%。令人失望的是,Chrome的无头模式比UI模式的时间节省了30%以上。其他无头驱动程序PhantomJS的性能比Chrome的无头模式好34.92%。令我惊讶的是,Edge浏览器击败了所有这些。var options = new FirefoxOptions();options.AddArguments("--headless");{ // the rest of your test}可从Firefox 57+开始使用Mozilla Firefox的无头模式性能比UI版本好3.68%。令人失望的是,Chrome的无头模式比UI模式的时间节省了30%以上。其他无头驱动程序PhantomJS的性能比Chrome的无头模式好34.92%。令我惊讶的是,Edge浏览器击败了所有这些。注意:PhantomJS不再维护!