selenium WebDriverException:无头Pi上发生“连接被拒绝”

时间:2018-10-07 02:06:19

标签: python selenium raspberry-pi headless iceweasel

编辑:这似乎不是重复的,因为帖子链接的答案中的建议均未解决该错误。这是运行脚本后的geckodriver.log:

1538960169585   mozrunner::runner       INFO    Running command: "/usr/bin/firefox" "-marionette" "--headless" "-foreground" "-no-remote" "-profile" "/tmp/rust_mozprofile.xicOi27i6laa"
1538960178656   Marionette      INFO    Listening on port 2828
^G[Child 17792] ###!!! ABORT: Aborting on channel error.: file /build/firefox-esr-YKrXxr/firefox-esr-52.9.0esr/ipc/glue/MessageChannel.cpp, line 2152
[Child 17792] ###!!! ABORT: Aborting on channel error.: file /build/firefox-esr-YKrXxr/firefox-esr-52.9.0esr/ipc/glue/MessageChannel.cpp, line 2152

我无法在无头的Raspberry Pi 3 B +上创建运行python 3.5的webdriver实例。我跑了

sudo apt-get install python-pip iceweasel xvfb pip install pyvirtualdisplay selenium

安装依赖项。但是,当我运行基本脚本来创建Selenium WebDriver时,会收到一条WebDriverException: Message: connection refused消息。

我的代码:

from selenium import webdriver
from pyvirtualdisplay import Display

display = Display(visible=0, size=(800, 600))
display.start()

profile = webdriver.FirefoxProfile()
profile.native_events_enabled = False

driver = webdriver.Firefox(profile)

错误消息:

 Traceback (most recent call last):
  File "simpletest", line 10, in <module>
    driver = webdriver.Firefox(firefox_profile=profile)
  File "/home/pi/.local/lib/python3.5/site-packages/selenium/webdriver/firefox/webdriver.py", line 174, in __init__
    keep_alive=True)
  File "/home/pi/.local/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__
    self.start_session(capabilities, browser_profile)
  File "/home/pi/.local/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
    response = self.execute(Command.NEW_SESSION, parameters)
  File "/home/pi/.local/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "/home/pi/.local/lib/python3.5/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: connection refused
来自另一个论坛的

This answer表示上述代码应该可以使用。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

我的新Raspbery Pi 3 B +遇到了相同的问题。我通过安装旧版本的geckodriver修复了该错误。我正在运行Raspbian GNU / Linux 9(拉伸)。如果在Raspberry Pi的bash终端中运行cat /etc/os-release,则可以查找自己的操作系统版本。您将获得如下所示的输出:

PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"

如果您使用的是Raspbian,则在安装Firefox时,您可能收到的版本是52.9.0或更早版本。您可以通过在Raspberry Pi上的bash终端上运行firefox-esr -version来进行检查。请注意,iceweasel实际上是firefox-esr。有关更多详细信息,请参见https://lwn.net/Articles/676799/。版本52.9.0是Raspbian的最新,完全受支持的版本,即使您运行sudo apt-get updatesudo apt-get upgrade firefox-esr,该版本也不会更改。实际上,sudo apt-get upgrade firefox-esr会告诉您firefox-esr is already the newest version (52.9.0esr-1~deb9u1)

由于无法升级Firefox,因此需要安装旧版本的geckodriver。在https://github.com/mozilla/geckodriver/releases/页上,对于geckodriver v0.19.0,建议使用Firefox 55.0和更高版本以及Selenium 3.5和更高版本。因此,您应该下载并安装geckodriver v0.18.0。以下命令可以解决问题:

curl -O https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-arm7hf.tar.gz
tar -xzvf geckodriver-v0.18.0-arm7hf.tar.gz
sudo cp geckodriver /usr/local/bin/

注意:如果收到权限错误,则可能需要运行sudo chmod +x /usr/local/bin/geckodriver