So when using selenium python with firefox I need to prevent this:
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.
This should work:
You can also create a custom Firefox profile as described here