When I launch Selenium's WebDriver (Chromedriver). A console window (chromedriver.exe) runs and it opens Chrome. I need to know how I can hide those like a silent mode because I get messy when there are too many open. I am using C#.
As of Chrome 59, you can now also hide the chrome browser window by using headless mode:
options.AddArgument("headless");
and in combination with:
ChromeDriverService service = ChromeDriverService.CreateDefaultService();
service.HideCommandPromptWindow = true;
it runs in complete silence.