Я намагаюся змусити Selenium використовувати phantomjs на машині Windows. Мій код складається без помилок:
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
import cookielib
import re
from splinter import Browser
driver = webdriver.PhantomJS('C:/Program Files (x86)/phantomjs-1.9.2-windows')
Але кожен раз, коли я його запускаю, я отримую помилку
Traceback (most recent call last):
File "E:/~PROJECT/disinfo/py/bs.py", line 8, in <module>
driver = webdriver.PhantomJS('C:/Program Files (x86)/phantomjs-1.9.2-windows')
File "C:\Python27\lib\site-packages\selenium\webdriver\phantomjs\webdriver.py", line 50, in __init__
self.service.start()
File "C:\Python27\lib\site-packages\selenium\webdriver\phantomjs\service.py", line 63, in start
raise WebDriverException("Unable to start phantomjs with ghostdriver.", e)
selenium.common.exceptions.WebDriverException: Message: 'Unable to start phantomjs with ghostdriver.' ; Screenshot: available via screen
Я отримував цю помилку годинами. Msgstr "Неможливо запустити phantomjs з ghostdriver". Найпростіші приклади в Інтернеті показують встановлення селену з PIP, а потім phantomjs з NodeJS NPM, ось як я це зробив. Місцезнаходження селену є і в моєму PYTHONPATH. Я, відверто кажучи, не маю поняття, чого чорта хоче від мене. Якісь ідеї?