Is there any way to maximize the browser window using WebDriver (Selenium 2) with C#?
You can try with this code to maximize chrome window.
ChromeOptions options = new ChromeOptions(); options.addArguments("--window-size=1920,1080"); WebDriver driver = new ChromeDriver(options);