I got stuck in handling UntrustedSSLcertificates using web driver in Java.
I created firefox profile like:
FirefoxProfile profile = new FirefoxProfil
//Firefox example with URL www.google.com
FirefoxProfile profile=new FirefoxProfile(); profile.setAssumeUntrustedCertificateIssuer(false); driver=new FireforDriver(profile); driver.get("https://google.com");