Is there a way to maximize the chrome browser window using python selenium WebDriver?
Note: I am using Chrome Driver 23.0 Any solution on this would be greatly appreciat
This works for me, with Mac OS Sierra using Python,
options = webdriver.ChromeOptions() options.add_argument("--kiosk") driver = webdriver.Chrome(chrome_options=options)