I'm trying to fix testing for an internal app and I don't care about security at the moment (I just want it to work).
It's giving me SSL warnings which breaks the testing. Specifically Your connection is not secure/ SEC_ERROR_UNKOWN_ISSUER.
I've tried both setting capabilities['acceptSslCerts'] = True
and
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
and neither works. The capabilities listed by the driver after constructing it has acceptSslCerts as false.
Note I'm using Python and Firefox 47.
Also I switched to using the new marionette Firefox Webdriver because the regular one was crashing on startup.