Skip to content

Commit

Permalink
[java] Ignoring flaky chrome tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed May 30, 2019
1 parent a58f49b commit ffe8c09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions java/client/test/org/openqa/selenium/ProxySettingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import static org.assertj.core.api.Assertions.assertThat;
import static org.openqa.selenium.remote.CapabilityType.PROXY;
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
import static org.openqa.selenium.testing.drivers.Browser.SAFARI;

Expand Down Expand Up @@ -144,6 +145,7 @@ public void canConfigureProxyThroughPACFile() {
@NoDriverBeforeTest
@NoDriverAfterTest
@Ignore(EDGE)
@Ignore(value = CHROME, reason = "Flaky")
public void canUsePACThatOnlyProxiesCertainHosts() {
Server helloServer = createSimpleHttpServer(
"<!DOCTYPE html><title>Hello</title><h3>Hello, world!</h3>");
Expand Down
2 changes: 2 additions & 0 deletions java/client/test/org/openqa/selenium/ReferrerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import static org.openqa.selenium.remote.CapabilityType.PROXY;
import static org.openqa.selenium.support.ui.ExpectedConditions.presenceOfElementLocated;
import static org.openqa.selenium.support.ui.ExpectedConditions.titleIs;
import static org.openqa.selenium.testing.drivers.Browser.CHROME;
import static org.openqa.selenium.testing.drivers.Browser.EDGE;
import static org.openqa.selenium.testing.drivers.Browser.FIREFOX;
import static org.openqa.selenium.testing.drivers.Browser.IE;
Expand Down Expand Up @@ -298,6 +299,7 @@ public void crossDomainHistoryNavigationWhenProxyInterceptsHostRequests() {
@Ignore(value = FIREFOX, travis=true)
@NeedsLocalEnvironment
@Ignore(EDGE)
@Ignore(value = CHROME, reason = "Flaky")
public void navigationWhenProxyInterceptsASpecificUrl() {
testServer1.start();
proxyServer.start();
Expand Down

0 comments on commit ffe8c09

Please sign in to comment.