when using python splinter firefox 47 marionette new webdriver, it gives certificate error when access the website i want, i tried to accept ssl certs with
browser = Browser('firefox', capabilities = {'marionette': True, 'acceptSslCerts': True})
or using trustAllSSLCertificates instead of acceptSslCerts, but still gives me certificate error, what is the problem?
I am also facing this issue.
This has been acknowledged as a bug. https://bugzilla.mozilla.org/show_bug.cgi?id=1103196
There may be a workaround I havent tried it yet. Programmatically Install Certificate into Mozilla
edit: it's not necessary to use the nightly firefox anymore
Rémi's answer is correct, thank you. I have been facing the same issue in Java, in case someone else stumbles across this here's the Java solution:
there isnt a
CapabilityType.ACCEPT_INSECURE_CERTS
yet as per Selenium version 3.3.1 and theCapabilityType.ACCEPT_SSL_CERTS
doesn't work, thus use"acceptInsecureCerts"
. Also the constructorFirefoxDriver(binary, profile, capabilities)
is deprecated but AFAIK this is the only way to use a custom Firefox binary (?).The Firefox bug is now resolved: https://github.com/mozilla/geckodriver/issues/93
For now, you need to install the latest Firefox Nightly build (52 or 53) if you want to use this feature right away: https://nightly.mozilla.org/
Then, the following code will work (Python selenium only here, but my guess is that you can replace "acceptSslCerts" with the latest: "acceptInsecureCerts" in your code)
edit: I am not sure how to pass the Nightly binary to Splinter though - https://github.com/cobrateam/splinter/pull/437 - hopefully the standard version of Firefox will be delivered on 2017-03-06 https://wiki.mozilla.org/RapidRelease/Calendar