Sto cercando di convincere Selenium a usare i phantomjs su un computer Windows. Il mio codice viene compilato senza errori:
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')
Ma ogni volta che lo eseguo ottengo l'errore
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
Ricevo questo errore da ore. "Impossibile avviare phantomjs con ghostdriver". Gli esempi più semplici online mostrano l'installazione di selenio con PIP e quindi phantomjs con NodeJS NPM, ed è così che l'ho fatto. La posizione di Selenium è anche nel mio PYTHONPATH. Sinceramente non ho idea di cosa diavolo questa cosa voglia da me. Qualche idea?