Unable to load Atom ''find_element"

前端 未结 3 353
陌清茗
陌清茗 2021-02-01 02:18

I have recently installed PhantomJS and encountered this error on my first run:

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

d         


        
3条回答
  •  被撕碎了的回忆
    2021-02-01 02:36

    For me it start to work after

    apt install nodejs-legacy # just an alias node/nodejs to make npm install work
    apt purge phantomjs       # optionaly
    npm install -g phantomjs  # most important part because apt installation failed for me
    

提交回复
热议问题