入土 发表于 2023-9-15 16:11:37

selenium重新安装后报错

报错代码:
    raise NoSuchDriverException(msg) from err
selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain driver for chrome using Selenium Manager.; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location

之前没问题把selenium模块重新安装下后就报错了


代码如下:
from selenium import webdriver

driver = webdriver.Chrome()


环境变量设置




isdkz 发表于 2023-9-15 16:11:44

这个错误是由于Selenium无法找到Chrome浏览器驱动程序而引起的。您可以尝试以下几个解决方案:



1. 确保您已经安装了Chrome浏览器,并且Chrome浏览器的版本与您下载的Chrome浏览器驱动程序的版本相匹配。



2. 尝试将Chrome浏览器驱动程序的路径添加到系统环境变量中。



3. 尝试指定Chrome浏览器驱动程序的路径,例如:



from selenium import webdriver



driver = webdriver.Chrome('/path/to/chromedriver')





希望这些解决方案可以帮助您解决问题。

歌者文明清理员 发表于 2023-9-15 19:17:07

https://npm.taobao.org/mirrors/chromedriver/
页: [1]
查看完整版本: selenium重新安装后报错