一、安装Selenium报错解决
在安装Selenium模块的时候就报错
ERROR: Cannot uninstall 'certifi'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
就试了一下pip install certifi --ignore-installed
然后就成功了(pip install Selenium #这个Selenium的S需要大写)
二、webdriver下载
这里需要有webdriver驱动文件
参考这个下载地址:
Release 0.32.2 · mozilla/geckodriver · GitHub
安装了之后用下面的代码试了一下:报错了???
又报错,报错'module' object is not callable 模块对象不可调用
这个时候我就知道肯定是webdriver安装有问题,然后搜了一下要安装浏览器对应版本的webdriver才可以成功运行调用,于是就卸载了selenium:pip uninstall selenium ,重新安装对应版本的selenium:pip install selenium==3.9.0
然后参照这篇文章进行安装对应版本的webdriver
Selenium+WebDriver 各浏览器驱动下载与版本对应_selenium4.8.2_公子清羽的博客-CSDN博客
1.Chrome版本查询:
设置------关于Chrome-----可以看到版本号
安装对应的webdriver版本即可,见下图:
下载对应版本之后解压并把他放到你新建的一个路径文件夹里D:\apk\chromedriver
并把这个路径添加到环境变量里,新建D:\apk\chromedriver,确定就行啦。
具体参考如下:
https://zhuanlan.zhihu.com/p/52120089
3.安装完成对应版本后,下面来检验一下是否能成功运行:
from selenium import webdriver
browser=webdriver.Chrome()
browser.get('http://www.baidu.com')
可以看到已经可以使用webdriver驱动文件对相应的chrome进行操作文章来源:https://www.toymoban.com/news/detail-765291.html
成功,撒花****8**88***8**********8*888*8***8 文章来源地址https://www.toymoban.com/news/detail-765291.html
到了这里,关于安装Selenium报错解决&webdriver下载的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!