"Exception in thread "main" org.openqa.selenium.WebDriverException:断开连接:收到 Inspector.detached 事件" 与 Selenium Java
"Exception in thread "main" org.openqa.selenium.WebDriverException: disconnected: received Inspector.detached event" with Selenium Java
我在我的 mac OS (Catalina 10.15.7),
上使用带 chrome 驱动程序的 Selenium Java 时一直收到此错误
Exception in thread "main" org.openqa.selenium.WebDriverException: disconnected: received Inspector.detached event
我 googled 和一些人说当你在 google chrome 上打开 Chrome 开发者工具时就会发生这种情况。我没有打开任何 Windows,但它仍在发生。
我正在使用 Google Chrome 版本 91.0.4472.77
和 chrome 驱动程序版本91.0.4472.19
。对这里发生的事情有什么想法吗?有时我可以使应用程序成功达到 运行 1 平局,但 90% 的时间它会抛出此异常 - 这是怎么回事?
在您的 chromeOptions
中,当您初始化 chromedriver 时,添加以下内容:
chromeOptions.setPageLoadStrategy(PageLoadStrategy.NONE);
如果有帮助请告诉我。
我在我的 mac OS (Catalina 10.15.7),
上使用带 chrome 驱动程序的 Selenium Java 时一直收到此错误Exception in thread "main" org.openqa.selenium.WebDriverException: disconnected: received Inspector.detached event
我 googled 和一些人说当你在 google chrome 上打开 Chrome 开发者工具时就会发生这种情况。我没有打开任何 Windows,但它仍在发生。
我正在使用 Google Chrome 版本 91.0.4472.77
和 chrome 驱动程序版本91.0.4472.19
。对这里发生的事情有什么想法吗?有时我可以使应用程序成功达到 运行 1 平局,但 90% 的时间它会抛出此异常 - 这是怎么回事?
在您的 chromeOptions
中,当您初始化 chromedriver 时,添加以下内容:
chromeOptions.setPageLoadStrategy(PageLoadStrategy.NONE);
如果有帮助请告诉我。