Python3+selenium配置常见报错解决方案


Posted in Python onAugust 28, 2020

第一个坑:'geckodriver' executable needs to be in PATH

1.如果启动浏览器过程中报如下错误

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\test\python3\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 145, in __init__
self.service.start()
File "D:\test\python3\lib\site-packages\selenium\webdriver\common\service.py", line 81, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH.

2.这个是因为最新的selenium3.0启动firefox需要geckodriver.exe这个驱动文件。

3.下载之后,配置到环境变量path下(可以直接放python根目录)

第二坑:Expected browser binary location, but unable to find binary in default location

1.如果启动浏览器过程中报如下错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\test\python3\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 155, in __init__
keep_alive=True)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 92, in __init__
self.start_session(desired_capabilities, browser_profile)

File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 179, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 238, in execute
self.error_handler.check_response(response)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 193, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Expected browser binary location, but unable to find binary in default location,
no 'moz:firefoxOptions.binary' capability provided, and no binary flag set on the command line.

2.这个是因为firefox.exe这个文件也需要配置到环境变量path下。

3.这个路径就是安装完firefox后,找到firefox.exe这个文件的地址,加到path下。

第三坑:Unsupported Marionette protocol version 2, required 3

1.如果启动浏览器过程中出现如下错误

Traceback (most recent call last):
File "<stdin>", line 1, in <module>

File "D:\test\python3\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 155, in __init__
keep_alive=True)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 92, in __init__
self.start_session(desired_capabilities, browser_profile)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 179, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 238, in execute
self.error_handler.check_response(response)
File "D:\test\python3\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 193, in check_response

raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: Unsupported Marionette protocol version 2, required 3

2.这个错误原因是firefox版本过低了,最新的selenium3.0版本支持firefox47以上的版本,升级版本就可以了

第四坑:WebDriverException: Message: newSession

1.Traceback (most recent call last):

File “D:\test\python3\lib\site-packages\selenium\webdriver\firefox\\webdriver.py”, line 170, in init
keep_alive=True)
File “D:\test\python3\lib\site-packages\selenium\webdriver\firefox\\webdriver.py”, line 156, in init
self.start_session(capabilities, browser_profile)
File “D:\test\python3\lib\site-packages\selenium\webdriver\firefox\\webdriver.py”, line 245, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File “D:\test\python3\lib\site-packages\selenium\webdriver\firefox\\webdriver.py”, line 314, in execute
self.error_handler.check_response(response)
File “D:\test\python3\lib\site-packages\selenium\webdriver\firefox\\errorhandler.py”, line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: newSession

2.下载最新的geckodriver.exe 然后把它放到python的安装目录下

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python socket网络编程步骤详解(socket套接字使用)
Dec 06 Python
Python 序列化 pickle/cPickle模块使用介绍
Nov 30 Python
python遍历类中所有成员的方法
Mar 18 Python
用python记录运行pid,并在需要时kill掉它们的实例
Jan 16 Python
python字符串中的单双引
Feb 16 Python
python嵌套字典比较值与取值的实现示例
Nov 03 Python
Python Unittest自动化单元测试框架详解
Apr 04 Python
python 把列表转化为字符串的方法
Oct 23 Python
python根据list重命名文件夹里的所有文件实例
Oct 25 Python
浅谈PyQt5中异步刷新UI和Python多线程总结
Dec 13 Python
python else语句在循环中的运用详解
Jul 06 Python
numpy数据类型dtype转换实现
Apr 24 Python
Python 中如何写注释
Aug 28 #Python
Python操作Word批量生成合同的实现示例
Aug 28 #Python
Python接口自动化测试的实现
Aug 28 #Python
解决python和pycharm安装gmpy2 出现ERROR的问题
Aug 28 #Python
Python自动登录QQ的实现示例
Aug 28 #Python
python opencv pytesseract 验证码识别的实现
Aug 28 #Python
简单的命令查看安装的python版本号
Aug 28 #Python
You might like
PHP用户指南-cookies部分
2006/10/09 PHP
Linux Apache PHP Oracle 安装配置(具体操作步骤)
2013/06/17 PHP
CI操作cookie的方法分析(基于helper类库)
2016/03/28 PHP
人脸识别测颜值、测脸龄、测相似度微信接口
2016/04/07 PHP
任意位置显示html菜单
2007/02/01 Javascript
说说JSON和JSONP 也许你会豁然开朗
2012/09/02 Javascript
JS清空多文本框、文本域示例代码
2014/02/24 Javascript
20条学习javascript的编程规范的建议
2014/11/28 Javascript
不使用ajax实现无刷新提交表单
2014/12/21 Javascript
浅析Javascript中“==”与“===”的区别
2014/12/23 Javascript
jQuery简单实现禁用右键菜单
2015/03/10 Javascript
javascript模拟C#格式化字符串
2015/08/26 Javascript
JS实现无缝循环marquee滚动效果
2017/05/22 Javascript
Angular排序实例详解
2017/06/28 Javascript
详谈js中标准for循环与foreach(for in)的区别
2017/11/02 Javascript
Express的HTTP重定向到HTTPS的方法
2018/06/06 Javascript
Vue实战教程之仿肯德基宅急送App
2019/07/19 Javascript
Electron实现应用打包、自动升级过程解析
2020/07/07 Javascript
微信小程序实现modal弹出框遮罩层组件(可带文本框)
2020/12/20 Javascript
分数霸榜! python助你微信跳一跳拿高分
2018/01/08 Python
torch 中各种图像格式转换的实现方法
2019/12/26 Python
Python3 Click模块的使用方法详解
2020/02/12 Python
Python+redis通过限流保护高并发系统
2020/04/15 Python
使用Tensorflow-GPU禁用GPU设置(CPU与GPU速度对比)
2020/06/30 Python
CSS3点击按钮实现背景渐变动画效果
2016/10/19 HTML / CSS
欧铁通票官方在线销售网站:Eurail.com
2017/10/14 全球购物
Space NK英国站:英国热门美妆网站
2017/12/11 全球购物
岗位廉洁从业承诺书
2014/03/28 职场文书
校庆筹备方案
2014/03/30 职场文书
人力资源管理专业自荐信
2014/06/24 职场文书
2015元旦节寄语
2014/12/08 职场文书
新入职员工工作总结
2015/10/15 职场文书
市级三好生竞选稿
2015/11/21 职场文书
阳光体育运动标语口号
2015/12/26 职场文书
导游词之河北滦平金山岭长城
2019/10/16 职场文书
mysql连接查询中and与where的区别浅析
2021/07/01 MySQL