I have created a player which will automate chrome using selenium and ChromeDriver in C#. It\'s working fine.
Issue what I am facing is, when it creates an object fo
This is possible now, using the headless option. Might not have been available then. Running Chrome Headless
Translated into C#, you can do this:
ChromeOptions options = new ChromeOptions();
options.AddArgument("headless");
ChromeDriver driver = new ChromeDriver(options);
Now the browser window is invisible, while the rest of the program stays the same.