firefoxで「信頼できない証明書」を処理しているときに、いくつかの問題に直面しています。 FirefoxDriver(新しいFirefoxProfile)は非推奨となりましたので使用できませんSelenium Web Driverを使用して、Firefoxで信頼できない証明書を処理する方法は?
次のコードを使用しましたが、それを達成できませんでした。
FirefoxProfile profile=new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);
profile.setAssumeUntrustedCertificateIssuer(false);
FirefoxOptions options=new FirefoxOptions().setProfile(new FirefoxProfile());
WebDriver driver=new FirefoxDriver(options);
driver.get("Web Link");
は、誰もがセレン3に
以下