How to Maximize window in chrome using webDriver (python)

前端 未结 9 1882
天命终不由人
天命终不由人 2021-01-30 08:29

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

9条回答
  •  南方客
    南方客 (楼主)
    2021-01-30 09:11

    For MAC or Linux:

    ChromeOptions chromeOptions = new ChromeOptions();
    chromeOptions.addArguments("--kiosk");
    driver = new ChromeDriver(chromeOptions);
    

    For Windows:

    ChromeOptions chromeOptions = new ChromeOptions();
    chromeOptions.addArguments("--start-maximized");
    driver = new ChromeDriver(chromeOptions);
    

提交回复
热议问题