pythonseleniumselenium-firefoxdriverfirefox-marionette

Preventing "Warning Potential Security Risk Ahead" in selenium python Firefox


So when using selenium python with firefox I need to prevent this: enter image description here

This is what I have already tried

profile = webdriver.FirefoxOptions()
profile.accept_insecure_certs = True
profile.accept_untrusted_certs = True
firefox = webdriver.Firefox(executable_path=utils.str_master_dir('geckodriver.exe'), options=profile)
...

Any help would be appreciated thanks.


Solution

  • This should work:

    from selenium import webdriver
    capabilities = webdriver.DesiredCapabilities().FIREFOX
    capabilities['acceptInsecureCerts'] = True
    capabilities['marionette'] = True
    driver = webdriver.Firefox(desired_capabilities=capabilities)
    

    You can also create a custom Firefox profile as described here