Selenium错误 - ConnectionResetError:[WinError 10054]远程主机强制关闭现有连接

时间:2016-06-19 04:35:59

标签: python python-3.x

我正在使用selenium模块,但突然间我得到了这个错误

ConnectionResetError: [WinError 10054] An existing connection was forcibly closed by the remote host

这是我的简单代码,它给了我错误

from selenium import webdriver

browser = webdriver.Firefox()
browser.get('https://www.instagram.com/')

3 个答案:

答案 0 :(得分:1)

可能是您为导航器升级Webdriver的时候了。我在使用Chrome时遇到了同样的问题,并且用最新版本替换了现有的chromedriver.exe(在我的情况下为windows)。

答案 1 :(得分:0)

我发现新的firefox 47更新是问题,我不得不将其降级为firefox 46

我从这里得到了信息 this

答案 2 :(得分:0)

我遇到了同样的问题,因此遇到了这个帖子。更新到最新版本的geckodriver为我解决了这个问题