PythonでSelenium Webdriverを使用して、保護されたhttp(https)ページを開くのを手伝ってくれる人はいますか?
ページを開くとすぐに、証明書エラー「信頼できない接続」が表示されます。
次のコードを試しましたが、うまくいきませんでした-
from selenium import webdriver
profile = webdriver.firefox.firefox_profile.FirefoxProfile()
#profile.accept_untrusted_certs = 'true'
profile.default_preferences["webdriver_assume_untrusted_issuer"] = 'false'
profile.update_preferences()
browser = webdriver.Firefox(profile)
browser.get('https://192.168.20.35:8443')
-
セレン Web ドライバーのバージョン - 2.35.0
Python バージョン - 2.7.2