使用selenium java-io-ioexception-invalid-status-code-403-文本禁止[duplicate]启动Chrome浏览器时出现错误

fkaflof6  于 2023-03-16  发布在  Java
关注(0)|答案(1)|浏览(522)

此问题在此处已有答案

Java.io.IOException: Invalid Status code=403 text=Forbidden(7个答案)
2天前关闭。
enter image description here
我试过在示例化驱动程序后使用 selenium 启动chromedriver。
我使用的是Chrome浏览器版本111.0.5563.41。

zysjyyx4

zysjyyx41#

请尝试下面的解决方案。

ChromeOptions opt = new ChromeOptions();
opt.addArguments("--remote-allow-origins=*");
// Launching the browser
driver=new ChromeDriver(opt);

ChromeOptions通常用于无头运行,但是新的chrome版本111与最新的Selenium版本甚至4.8都不兼容,所以目前这是一个替代解决方案。

相关问题