I want start Chrome hidden. I using Web Driver version 2.21.0.
I try this:
ChromeOptions options = new ChromeOptions();
optionsChrome.AddArgument("--log-level=3");
IWebDriver driver = new ChromeDriver(options);
I have problem with ChromeDriver(options);
A field initializer cannot reference the non-static field, method, or property Form1.Options
If this possible I want start chrome totally hidden, how I can do that?