由于最近自动化频频更新导致出现各种问题,因此在创建驱动对象代码时改成这种方式
我最近就遇到了由于更新而导致的代码报错,报错信息如下:
复制内容如下:
Exception in thread “main” org.openqa.selenium.remote.http.ConnectionFailedException: Unable to establish websocket connection to http://localhost:60260/devtools/browser/11657e32-5667-4bd3-bfb1-f94dc49373a0
原来的代码:
ChromeDriver driver = new ChromeDriver(options);
使用edge浏览器:文章来源:https://www.toymoban.com/news/detail-642097.html
EdgeOptions options = new EdgeOptions();
options.addArguments("--remote-allow-origins=*");
EdgeDriver driver = new EdgeDriver(options);
使用Chrome浏览器:文章来源地址https://www.toymoban.com/news/detail-642097.html
ChromeOptions options = new ChromeOptions();
options.addArguments("--remote-allow-origins=*");
ChromeDriver driver = new ChromeDriver(options);
到了这里,关于自动化更新导致的各种问题解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!