一、出现上述问题的原因
selenium更新到4.15.2以上,自带浏览器驱动管理,
会自动访问外网下载浏览器驱动,因为访问不了外网导致报错
二、如何解决
1、指定使用本地驱动(推荐)
from selenium.webdriver.chrome.service import Service
driver = webdriver.Chrome(service=Service(executable_path=r'E:\chromedriver.exe'))
2、selenium回退到4.5.0版本
pip uninstall selenium #卸载原来的版本
pip install selenium==4.5.0 #安装4.5.0版本
标签:4.5,浏览器,Service,service,selenium,pip,打开
From: https://blog.csdn.net/weixin_42019349/article/details/140653491