How to Maximize window in chrome using webDriver (python)

The Solution to How to Maximize window in chrome using webDriver (python) is


You could use ChromeOptions and set suitable argument:

options = ChromeOptions()
options.add_argument("--start-maximized")
driver = ChromeDriver(options)

~ Answered on 2012-08-31 10:42:00


Most Viewed Questions: