我正在使用 chromedriver 进行硒自动化。但是与手动测试相比,网页加载速度非常慢。请帮助
得到错误:
[1596549682.992][SEVERE]: Timed out receiving message from renderer: 300.000
代码试验:
ChromeOptions option=new ChromeOptions();
option.setPageLoadStrategy(PageLoadStrategy.NORMAL);
option.addArguments("--disable-features=NetworkService");
option.addArguments("--dns-prefetch-disable");
option.addArguments("--disable-extensions");
option.setProxy(null);
driver = new ChromeDriver(option);
Chrome 版本:84 Chrome 驱动程序版本:84 Selenium 版本:已尝试 3.141.59 和 3.5.2