Monthly Archive: March 2016

Ghost process after running PhantomJS 0

Ghost process after running PhantomJS

Spooky !   Short term solution $> ps -ef | grep phantom | grep -v grep | awk '{print $2}' | xargs kill -9   Better long-term solution Using driver.quit() : driver = webdriver.PhantomJS(service_args=['--ignore-ssl-errors=true', '--ssl-protocol=any']) driver.get('https://'...

Read the doc from the right place 0

Read the doc from the right place

Selenium on Python http://selenium-python.readthedocs.org/api.html The WebDriver API http://selenium-python.readthedocs.org/api.html?highlight=phantom#module-selenium.webdriver.remote.webdriver jQuery http://api.jquery.com/ PHP http://php.net/docs.php which what I consider A-class documentation with user-submitted sample code at bottom of doc pages as a bonus.