博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
运行.py提示selenium.common.exceptions.WebDriverException
阅读量:5055 次
发布时间:2019-06-12

本文共 1458 字,大约阅读时间需要 4 分钟。

今天打开上次运行成功的.py文件,发现报错,报错信息如下:in/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /Users/zhangyanyan/PycharmProjects/untitled1/baidu.py

Traceback (most recent call last):

  File "/Users/zhangyanyan/PycharmProjects/untitled1/baidu.py", line 3, in

    driver = webdriver.Firefox()

  File "/Library/Python/2.7/site-packages/selenium/webdriver/firefox/webdriver.py", line 81, in __init__

    self.binary, timeout)

  File "/Library/Python/2.7/site-packages/selenium/webdriver/firefox/extension_connection.py", line 51, in __init__

    self.binary.launch_browser(self.profile, timeout=timeout)

  File "/Library/Python/2.7/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 68, in launch_browser

    self._wait_until_connectable(timeout=timeout)

  File "/Library/Python/2.7/site-packages/selenium/webdriver/firefox/firefox_binary.py", line 98, in _wait_until_connectable

    raise WebDriverException("The browser appears to have exited "

selenium.common.exceptions.WebDriverException: Message: The browser appears to have exited before we could connect. If you specified a log_file in the FirefoxBinary constructor, check it for details.

Process finished with exit code 1

百度了一下,猜测应该是本机的fi​refox安装后未设置为非自动更新,导致firefox自动更新到最新版本,而selenium最新版并不支持firefox的最新版。

解决方法:

方法一:降firefox版本;

方法二:升selenium 的jar包;​

方法三:下载与该版本selenium匹配的其他浏览器的驱动;

方法四:修改selenium兼容firefox版本的配置文件:

http://bbs.51testing.com/thread-1075662-1-1.html

转载于:https://www.cnblogs.com/ming1220/p/8320753.html

你可能感兴趣的文章
orcale 修改字段属性
查看>>
多线程总结之旅(3):多线程的优缺点
查看>>
STL基础用法
查看>>
C#多线程学习(四) 多线程的自动管理(线程池)
查看>>
学习进度条(第十三周)
查看>>
spring-boot 访问时,加与不加项目名分析
查看>>
Difference between val() and text()
查看>>
JAVA语法——使用while循环计算阶乘
查看>>
The Bookcase
查看>>
skynet服务的本质
查看>>
js 获取格林尼治时间戳
查看>>
如何用JQuery将View中的值Post到Controller
查看>>
课程作业四 生成随机数并求和,大数运算
查看>>
字符串问题之 字符串中的数字子串求和
查看>>
局域网只认IP不认名字
查看>>
ZOJ 2770_Burn the Linked Camp
查看>>
js 数组操作
查看>>
Node.js 入门篇
查看>>
add repository(仓库) EntityState状态
查看>>
Python9-进程理论-day35
查看>>