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
Based on what Janek answered, this worked for me (Linux):
from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("--start-maximized") driver = webdriver.Chrome(chrome_options=options)