I currently run browser tests via PhantomJS + Selenium in Python.
desired_capabilities = dict(DesiredCapabilities.PHANTOMJS) desired_capabilities[\"phantomjs
It turns out the page couldn't be crawled due an error: SSL handshake failed.
SSL handshake failed
The solution is to use the following line to initialize the driver:
driver = webdriver.PhantomJS(executable_path="./phantomjs", service_args=['--ignore-ssl-errors=true'])