草帽路飞UU 发表于 2022-8-24 17:13:29

还在百度中找chromedriver谷歌浏览器驱动的安装方式吗?来看这里!

在学习selenium自动化过程中,遇到的关于chromedriver下载安装的问题,在此简单总结下:


下载安装步骤:
1、安装selenium直接在终端执行命令:pip install selenium
2、chrome浏览器驱动下载地址:http://chromedriver.storage.googleapis.com/index.html



2、比如我的版本号是83.0.4103.116,只复制83.0.4103就行了,然后把复制下来的数字加到“https://chromedriver.storage.googleapis.com/LATEST_RELEASE_”后面。例如我的“https://chromedriver.storage.goo ... T_RELEASE_83.0.4103”。访问后得到的就是对应的谷歌驱动号




3、下载对应版本驱动;
4、若后续运行代码,遇到selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 83这种报错则表示浏览器与驱动版本不一致,需要重新下载安装对应版本的驱动;测试代码如图:



问题1: Message: ‘chromedriver’ executable needs to be in PATH
下载后执行代码报错:selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://chromedriver.chromium.org/home说明驱动的位置没有在path下,尝试方法后找到适合我的解决方式如下:

重启Mac,然后按住:Command+R键,进入恢复模式
进入后打开“实用工具”选项-选择“终端”
输入csrutil disable,重启电脑(如需恢复,进入恢复模式后,终端输入csrutil enable)
重启电脑后,进入终端,输入sudo mv chromedriver /usr/local/bin将chromedriver移动到/usr/local/bin
cd /usr/local/bin,执行sudo chmod a+x chromedriver修改权限
输入chromedriver查看启动正常
重新运行测试代码,可正常唤起Chrome了

问题2:Message: unknown error: cannot find Chrome binary
执行代码报错selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary表示找不到谷歌浏览器的位置,需要确认Google Chrome.app是否在默认的应用程序中,且名字正确,我规范了名称后可正常唤起Chrome了


如有其他mac使用过程中遇到的chromedriver问题,欢迎大家补充~




页: [1]
查看完整版本: 还在百度中找chromedriver谷歌浏览器驱动的安装方式吗?来看这里!