Is there any way to maximize the browser window using WebDriver (Selenium 2) with C#?
Simply use Window.Maximize() command
Window.Maximize()
WebDriver driver= new ChromeDriver() driver.Manage().Window.Maximize();