diff --git a/java/client/test/org/openqa/selenium/PageLoadingTest.java b/java/client/test/org/openqa/selenium/PageLoadingTest.java index 508f8c339e730..f5f956a1d6e97 100644 --- a/java/client/test/org/openqa/selenium/PageLoadingTest.java +++ b/java/client/test/org/openqa/selenium/PageLoadingTest.java @@ -306,7 +306,8 @@ public void testShouldBeAbleToNavigateForwardsInTheBrowserHistory() { @NotYetImplemented(value = SAFARI, reason = "does not support insecure SSL") @NotYetImplemented(EDGE) public void testShouldBeAbleToAccessPagesWithAnInsecureSslCertificate() { - // TODO(user): Set the SSL capability to true. + createNewDriver(new ImmutableCapabilities( + CapabilityType.ACCEPT_INSECURE_CERTS, Boolean.TRUE)); driver.get(appServer.whereIsSecure("simpleTest.html")); shortWait.until(titleIs("Hello WebDriver"));