I want to use PhantomJS in Python. I googled this problem but couldn\'t find proper solutions.
I find os.popen() may be a good choice. But I couldn\'t
os.popen()
If using Anaconda, install with:
conda install PhantomJS
in your script:
from selenium import webdriver driver=webdriver.PhantomJS()
works perfectly.