使用selenium(python)绕过Firefox中的不安全连接

时间:2017-02-14 07:16:42

标签: python-2.7 selenium raspberry-pi2

我试图在Raspberry pi 2(Raspbian PIXEL)中使用selenium绕过firefox中的不安全连接。 Firefox版本(45.7.0),geckodriver(0.14),selenium(3.0.2)。尝试使用以下代码,但它不起作用。

from selenium import webdriver

capabilities = webdriver.DesiredCapabilities.FIREFOX
capabilities['acceptSslCerts'] = True
driver = webdriver.Firefox(capabilities=capabilities)
driver.get('https://cacert.org/')
driver.quit()

有什么想法吗?

谢谢

0 个答案:

没有答案