在使用selenium+phantomjs的時候在Windows平臺下可以正常工做,在Linux下卻不能,並獲得錯誤信息:web
selenium.common.exceptions.TimeoutException: Message:
Screenshot: available via screen
在ST上找到答案:http://stackoverflow.com/a/36159299/4447404spa
driver = webdriver.PhantomJS(service_args=['--ignore-ssl-errors=true', '--ssl-protocol=TLSv1'])
在初始化driver時傳入參數"service_args=['--ignore-ssl-errors=true', '--ssl-protocol=TLSv1']"便可。code