所以我很难让 selenium 与 headless 驱动程序一起工作,特别是 PhantomJS。我正在尝试让它在 Ubuntu 网络服务器(Ubuntu 14.04.2 LTS)上运行。

从 python 解释器 (Python 2.7.6) 运行以下命令给出:

from selenium import webdriver
driver = webdriver.PhantomJS()

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/webdriver.py", line 51, in __init__
    self.service.start()
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/service.py", line 76, in start
    raise WebDriverException("Unable to start phantomjs with ghostdriver: %s" % e)
selenium.common.exceptions.WebDriverException: Message: Unable to start phantomjs with ghostdriver: [Errno 2] No such file or directory

我也试过:
driver = webdriver.PhantomJS(executable_path="/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/")

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/webdriver.py", line 51, in __init__
    self.service.start()
  File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/service.py", line 76, in start
    raise WebDriverException("Unable to start phantomjs with ghostdriver: %s" % e)
selenium.common.exceptions.WebDriverException: Message: Unable to start phantomjs with ghostdriver: [Errno 13] Permission denied

我还将它添加到python路径中:
import sys
sys.path.append("/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/")

我目前以 root 身份登录。 phantomjs 目录的权限是:
drwxr-sr-x  2 root staff 4096 Sep  9 06:58 phantomjs

对于 phantomjs/webdriver.py:
-rw-r--r--  1 root root  2985 Sep  9 06:58 webdriver.py

我已经确认安装了 selenium 并且是最新的(pip install selenium --upgrade)。它安装在:
/usr/local/lib/python2.7/dist-packages/selenium/webdriver/phantomjs/

print selenium.__version__
2.47.1

我看过:
  • https://superuser.com/questions/674322/python-selenium-phantomjs-unable-to-start-phantomjs-with-ghostdriver - Windows 特定但没有遵循类似的建议。
  • Using Selenium in the background - 答案建议使用完整路径的 PhatomJS。
  • https://code.google.com/p/selenium/issues/detail?id=6736 - 我卸载了 selenium 并安装了 v2.37,但没有运气。重新安装了最新版本,但仍然没有运气。
  • 加上一些其他链接,大多数似乎建议指定executable_path。

  • 我一直在使用 chromedriver 在本地托管服务器(在 OSX 上)上测试我的程序。我实际上为此使用了 Splinter ( https://splinter.readthedocs.org/en/latest/#headless-drivers ),并尝试了其他 headless 驱动程序(django 和 zope.testbrowser),但遇到了类似的问题。

    我愿意接受任何建议,如果需要,我不介意更换驱动程序。

    在此先感谢您的帮助。

    最佳答案

    我和你有同样的问题,有同样的错误。我尝试在 openSuse 服务器上安装它。我最终安装了 PhantomJS 表单源 - 不幸的是没有任何成功。对我有用的方法是通过 npm 安装 Phantomjs

    sudo npm install -g phantomjs
    

    关于python - Selenium Python Headless Webdriver (PhantomJS) 不工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32491274/

    10-11 23:15
    查看更多