I tried below ways but it didnt work. Is it possible to by pass SSL pages via python?
firefoxprofile = webdriver.FirefoxProfile(profile_directory='C:\\Users\\xyz\\Desktop\\DProfile')
firefoxprofile.accept_untrusted_certs = True
driver = webdriver.Firefox(firefox_profile=firefoxprofile)
driver.profile.accept_untrusted_certs = True
Is it possible to by pass ssl page via python. I have sample java code and it works fine
ProfilesIni prof = new ProfilesIni();
FirefoxProfile ff = prof.getProfile("DProfile2");
WebDriver driver = new FirefoxDriver(ff);
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);