--no-sandbox. , no-sandbox .
:
var options = new ChromeOptions();
options.SetLoggingPreference(LogType.Driver, LogLevel.All);
options.AddAdditionalCapability("useAutomationExtension", false);
options.AddArguments("--no-sandbox");
var driver = new ChromeDriver(options);
driver.Navigate().GoToUrl("http://localhost");
SetLoggingPreference , no-sandbox. Chrome :
[17532: 18272: 0301/225923,296: : gpu_process_transport_factory.cc(1009)] .
: chromedriver.exe , RemoteWebDriver ChromeDriver ( Tarun Lalwani ):
var options = new ChromeOptions();
options.SetLoggingPreference(LogType.Driver, LogLevel.All);
options.AddAdditionalCapability("useAutomationExtension", false);
var driver = new RemoteWebDriver(new Uri("http://localhost:9515"), options);
driver.Navigate().GoToUrl("http://localhost");