I'm trying to make a test with selenium and firefox in windows. I try to connect the script to a website that uses a SSL certificate and the browser give me a warning message that stops the test.
I've already tried this :
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
And also this :
capabilities['acceptSslCerts'] = True
With the same results : it doesn't work.
I'm working with the latest Firefox version and Python 2.7