selenium2.53+python3,启动Firefox报错
#coding=utf-8from selenium import webdriver
driver = webdriver.Firefox()
#基本到这就走不下去了
driver.get("http://www.baidu.com")
driver.find_element_by_id("kw").send_keys("selenium2")
driver.find_element_by_id("su").click()
driver.quit()
特别简单的一段代码,但是每次执行的时候到打开firefox,打开浏览器后,浏览器就提示“firefox已停止工作”,关闭之后会报下面这个错,搜了很多方法,都不好用,比如加profile参数(>>> myprofile=webdriver.FirefoxProfile\ (r"C:\Users\yaowenyue\AppData\Roaming\Mozilla\Firefox\Profiles\ju9xf7p4.default")
>>> myBrowser=webdriver.Firefox(myprofile)),向各位大神请教。
火狐版本是47
Traceback (most recent call last):
File "<pyshell#17>", line 1, in <module>
driver=webdriver.Firefox()
File "F:\Python\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 85, in __init__
keep_alive=True)
File "F:\Python\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 90, in __init__
self.start_session(desired_capabilities, browser_profile)
File "F:\Python\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 177, in start_session
response = self.execute(Command.NEW_SESSION, capabilities)
File "F:\Python\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 234, in execute
response = self.command_executor.execute(driver_command, params)
File "F:\Python\lib\site-packages\selenium\webdriver\remote\remote_connection.py", line 401, in execute
return self._request(command_info, url, body=data)
File "F:\Python\lib\site-packages\selenium\webdriver\remote\remote_connection.py", line 432, in _request
resp = self._conn.getresponse()
File "F:\Python\lib\http\client.py", line 1174, in getresponse
response.begin()
File "F:\Python\lib\http\client.py", line 282, in begin
version, status, reason = self._read_status()
File "F:\Python\lib\http\client.py", line 243, in _read_status
line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
File "F:\Python\lib\socket.py", line 575, in readinto
return self._sock.recv_into(b)
ConnectionResetError: 远程主机强迫关闭了一个现有的连接。
补充,配置IE和Chrome之后其他两个浏览器调用都没有问题,这样是不是可以排除我的环境问题 是你的火狐浏览器版本与selenium2.53不兼容导致的 掉渣饼 发表于 2016-6-27 16:01
是你的火狐浏览器版本与selenium2.53不兼容导致的
请问2.53兼容到哪个版本呢? 掉渣饼 发表于 2016-6-27 16:01
是你的火狐浏览器版本与selenium2.53不兼容导致的
请问2.53兼容到哪个版本呢? 25.0版本以下的估计都没什么问题吧,你可以试试 掉渣饼 发表于 2016-6-27 16:24
25.0版本以下的估计都没什么问题吧,你可以试试
谢谢,根据你说的原因,我刚刚找到一个帖子‘http://stackoverflow.com/questions/37693106/selenium-2-53-not-working-on-firefox-47/37693374’,应该是46以下版本都支持,我一会试一下,47的只能坐等火狐更新支持。
将版本降低到46,果然就没有这个问题了,仅供参考。 lovewang0306 发表于 2016-6-27 17:33
将版本降低到46,果然就没有这个问题了,仅供参考。
楼上的链接打开是英文的,表示看不懂,不过我也遇到和你同样的问题,也是同一个脚本,我是47的firefox,我也降低版本试试。 kevinlees 发表于 2016-7-5 20:00
楼上的链接打开是英文的,表示看不懂,不过我也遇到和你同样的问题,也是同一个脚本,我是47的firefox, ...
这个网站感觉像是国外的程序员论坛,里面经常有一些简单入门的问题,一般都会有人回复,有时候会去上面找答案,虽然是英文,但不难,加上翻译软件应该可以读懂 我也是,我和楼主一样的python语句,报一样的错
还想请教一下楼主,如何才能用python语句启动chrome浏览器呢? aioney 发表于 2016-7-29 09:44
我也是,我和楼主一样的python语句,报一样的错
还想请教一下楼主,如何才能用python语句启动chrome浏览 ...
将driver=webdriver.Firefox()替换成driver=webdriver.Chrome,不过前提是要安装Chrome浏览器驱动 楼主降低火狐版本后,又解决问题么 楼主降低火狐版本后,有解决问题么 浏览器怎么降低版本?是重新安装一个46版本的浏览器? lushuishui 发表于 2016-8-5 13:18
楼主降低火狐版本后,有解决问题么
有啊,在前面楼说了,降了就好用了 huoyanyan2012 发表于 2016-8-13 14:46
浏览器怎么降低版本?是重新安装一个46版本的浏览器?
卸载,然后重装,不过firefox后台能自动更新,这点比较讨厌,要禁用 huoyanyan2012 发表于 2016-8-13 14:46
浏览器怎么降低版本?是重新安装一个46版本的浏览器?
卸载,然后重装,不过firefox后台能自动更新,这点比较讨厌,要禁用 好贴 试试firefox 30版本的 应该就行了
页:
[1]