I guess I have blogged about how to bypass Untrusted SSL Connection before by using your local computer’s FireFox with stored certificate. However, there are cases when by doing this itself is not sufficient.
Below is what you can do besides that:
1. Enter “about:config” in the address bar of your FireFox
2. Enter the following settings (https://pusso is the website I want to bypass)
3. Use the following code in your Selenium code
FirefoxProfile profile = new FirefoxProfile(@”pathtolocalfirefoxprofile”);
profile.SetPreference(“ network.http.phishy-userpass- length”, 255);
profile.SetPreference(“ network.automatic-ntlm-auth. trusted-uris”, “pusso”);