Going to https://mysite/ works fine in my firefox browser. However, when I run a unit test, I get an error saying the certificate has expired. I guess it's simply not using the exceptions.
I searched and tried to use the default firefox profile (the only profile I found on my machine) which I thought would be the identical setup to launching my browser normally:
string profile = @"C:\Documents and Settings\steve.mcqueen\Application Data\Mozilla\Firefox\Profiles\3ast3x2f.default\";
FirefoxProfile firefoxProfile = new FirefoxProfile(profile)
{
// Added because why not, makes no odds though
AcceptUntrustedCertificates = true
};
driver = new FirefoxDriver(firefoxProfile);
baseURL = "https://theblob.com/";
However the error persists. I do not know what to do. Any ideas?
Additional: I can't get the firefox profile manager to load. Tried everything.