我希望Chrome驱动程序在Selenium 4(NodeJS)中开始最大化。
这是我的Firefox / Safari解决方案:
this.driver = await new Builder().forBrowser("firefox").build();
await this.driver.manage().window().maximize();
但是此解决方案不适用于Chrome。 我尝试过这个,但是也行不通...
let chromeoptions = new chrome.Options();
chromeoptions.addArguments("--start-maximized");
this.driver = await new Builder().forBrowser('chrome').setChromeOptions(chromeoptions).build();
我做错了吗?如何最大化Chrome驱动程序?
关于Stackoverflow的此问题有答案,但是它们已经过时和/或针对Python / Java,并且/或者在Selenium 4中不再起作用。