Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got stuck in handling UntrustedSSLcertificates using web driver in Java.

I created firefox profile like:

FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);

I created firefox profile, added overridden certificate.

This is not handling SSL certificates.

Is there any other way to handle UntrustedSSLcertificates?

share|improve this question

2 Answers

Have u seen these links?

http://justsomejavaguy.blogspot.com/2010/08/selenium-and-untrusted-ssl-certificates.html

http://fijiaaron.wordpress.com/2010/03/16/getting-past-untrusted-connections-on-self-signed-ssl-certs-using-selenium/

http://code.google.com/p/selenium/wiki/UntrustedSSLCertificates

The first two talk about creating a custom profile which you can start firefox with. The last one explains how webdriver handles untrusted certificates.

share|improve this answer
up vote 0 down vote accepted

Eventually I found solution for Untrusted SSLCertificates:

ProfilesIni allProfiles = new ProfilesIni();
System.setProperty("webdriver.firefox.profile","your custom firefox profile name");
String browserProfile = stem.getProperty("webdriver.firefox.profile");
FirefoxProfile profile = allProfiles.getProfile(browserProfile); 
profile.setAcceptUntrustedCertificates (true); 
webdriver = new FirefoxDriver(profile); 
share|improve this answer
It looks as if stem.getProperty on the third line should be System.getProperty. – Steve HHH Oct 25 '12 at 19:31

protected by Community Jun 2 '12 at 7:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.