执行UI测试时,我收到一个错误,即selenium不支持chromedriver的自动窗口大小调整,这导致测试失败.
有没有办法使用chrome-options设置无头铬?
我试过以下,
ChromeOptions options = new ChromeOptions();
options.addArguments("--start-maximized");
另外,将“–start-maximized”替换为“–start-fullscreen”和“–kiosk”.
但上面没有一个对我有用,对我有用的唯一选择是“–window-size = width,height”.
我不想硬编码宽度和高度的值,有什么办法可以设置全屏吗?
最佳答案
原文链接:/java/437420.html