-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
Using pytractor with the latest version of Firefox I'm not able to bypass self-signed certificates errors with firefox_profile or capabilities. Neither this code
from selenium import webdriver
from pytractor.webdriver import Firefox, Chrome
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
driver = Firefox(executable_path='../drivers/geckodriver', firefox_profile=profile)
nor this
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from pytractor.webdriver import Firefox, Chrome
desired_capabilities = DesiredCapabilities.FIREFOX
desired_capabilities['acceptSslCerts'] = True
desired_capabilities['acceptInsecureCerts'] = True
driver = Firefox(executable_path='../drivers/geckodriver', capabilities=desired_capabilities)
won't work.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels