Skip to content

Commit

Permalink
[java] Ignoring a test broken in Chrome 75
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jul 4, 2019
1 parent 470622b commit 16559dd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 16559dd

Please sign in to comment.