python安装selenium时报错CERTIFICATE_VERIFY_FAILED
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python安装selenium时报错CERTIFICATE_VERIFY_FAILED相关的知识,希望对你有一定的参考价值。
参考技术A 1.安装python2.通过python的pip安装selenium
3.安装pycharm
如图,pip安装selenium时,提示没有匹配的版本
通过pip install selenium -vvv查看安装日志,日志如下
日志来看,是访问selenium链接失败,SSL报错
继续搜索错误信息CERTIFICATE_VERIFY_FAILED
好了,找到答案!使用此命令安装即可!!!
pip --trusted-host pypi.python.org install selenium
一波三折,真是要死了,继续搜!
找到病友,哈哈,解决方法就不写了,感谢这位仁兄的分享
https://www.cnblogs.com/testway/p/8078920.html
Selenium+Python调Chrome浏览器时报Traceback (most recent call last): File "C:/Users/EDZ/Desktop/sele
上次使用Selenium+Python还是好几个月前了
今天想再用一下,结果写个打开网站的小demo报错,报错如下:
检查了一下,查看报错日志,应该是chrome版本和driver版本不一致导致的。
于是要重新下载对应的新的driver版本。
1、查看自己chrome版本如下:
2、安装webdriver
Firefox:https://github.com/mozilla/geckodriver/releases/
Chrome:https://sites.google.com/a/chromium.org/chromedriver/ 或者
http://chromedriver.storage.googleapis.com/index.html
IE:http://selenium-release.storage.googleapis.com/index.html
注:webdriver需要和对应的浏览器版本以及selenium版本对应
4、webdriver安装路径
Win:复制webdriver到Python安装目录下
Mac:复制webdriver到/usr/local/bin目录下
5、复制完成后重启pycharm
重新执行刚才的脚本,可以正常调起浏览器。
6、备注:
再日常用的时候可以关闭chrome的自动更新。
端午节安康!
一起加油吧!
以上是关于python安装selenium时报错CERTIFICATE_VERIFY_FAILED的主要内容,如果未能解决你的问题,请参考以下文章
selenium + python之BSTestRunner生成测试报告时报错:NameError: name 'unicode' is not defined
selenium + python之BSTestRunner生成测试报告时报错:NameError: name 'unicode' is not defined
【Python】在安装python模块时报错:Unicode Decode Error ascii codec can't decode byte…
Selenium+Python调Chrome浏览器时报Traceback (most recent call last): File "C:/Users/EDZ/Desktop/sele