Is there any way to maximize the browser window using WebDriver (Selenium 2) with C#?
This option is fine for me :
ChromeOptions options = new ChromeOptions(); options.addArguments("start-fullscreen");
This option works on all OS.