From 16559ddb469ec45bbdfef062a5638fb70cb18224 Mon Sep 17 00:00:00 2001 From: Alexei Barantsev Date: Thu, 4 Jul 2019 21:54:55 +0300 Subject: [PATCH] [java] Ignoring a test broken in Chrome 75 --- .../openqa/selenium/chrome/ChromeOptionsFunctionalTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java b/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java index 232718f92b807..cafbb3e6dfdfe 100644 --- a/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java +++ b/java/client/test/org/openqa/selenium/chrome/ChromeOptionsFunctionalTest.java @@ -20,6 +20,7 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.openqa.selenium.remote.CapabilityType.ACCEPT_SSL_CERTS; import static org.openqa.selenium.support.ui.ExpectedConditions.titleIs; +import static org.openqa.selenium.testing.drivers.Browser.CHROME; import org.junit.After; import org.junit.Test; @@ -29,6 +30,8 @@ import org.openqa.selenium.build.InProject; import org.openqa.selenium.testing.JUnit4TestBase; import org.openqa.selenium.testing.NeedsLocalEnvironment; +import org.openqa.selenium.testing.NotYetImplemented; +import org.openqa.selenium.testing.drivers.Browser; import java.io.IOException; import java.nio.file.Files; @@ -71,6 +74,7 @@ public void optionsStayEqualAfterSerialization() { @NeedsLocalEnvironment @Test + @NotYetImplemented(value = CHROME, reason = "Broken in Chrome 75") public void canSetAcceptInsecureCerts() { ChromeOptions options = new ChromeOptions(); options.setAcceptInsecureCerts(true);