所以我无法让 selenium 与无头驱动程序一起工作,特别是 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 特定但没有运气遵循类似的建议。
在后台使用 Selenium - 答案建议使用完整路径的 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 ),并尝试了其他无头驱动程序 (django 和 zope.testbrowser),但也遇到了类似的问题。
我愿意接受任何建议,如果需要,我不介意更换驱动程序。
提前感谢您的帮助。