Chrome .exceptions.WebDriverException:消息:无法连接到服务

2ekbmq32  于 2023-09-28  发布在  Go
关注(0)|答案(1)|浏览(115)

努力寻找一个解决方案,有最新的Chrome 117,也下载了chromedriver,并使用相应的路径在脚本中也尝试与chrome浏览器
虽然它打开了浏览器,但没有打开所需的测试URL(cnn.com)浏览器打开,并最终失败,并显示错误:

selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service C:\\xx\\x\\x\\chrome-win64\\chrome-win64\\chrome.exe

我可以尝试什么浏览器开始打开网址,也试图禁用防火墙,但没有运气

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.service import Service

service_obj = Service(r"C:\\xx\\xx\\xx\\chrome-win64\\chrome-win64\\chrome.exe")

driver.get("https://www.cnn.com/")

我可以尝试打开所需的网址,也试图禁用防火墙,但没有运气主机文件

# 102.54.94.97     rhino.acme.com          # source server
# 38.25.63.10     x.acme.com              # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1       localhost
#::1             localhost
y53ybaqx

y53ybaqx1#

请使用下面的代码行,以摆脱最新的Chrome问题。

options = Options()
    options.add_argument("--remote-allow-origins=*")
    driver = webdriver.Chrome(options=options)

相关问题