Skip to content

Commit

Permalink
Chrome 74 passes more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Apr 24, 2019
1 parent a5a8851 commit d1d3728
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ public void testGetCookiesInAFrame() {
}

@Test
@NotYetImplemented(CHROME)
public void testCannotGetCookiesWithPathDifferingOnlyInCase() {
String cookieName = "fish";
Cookie cookie = new Cookie.Builder(cookieName, "cod").path("/Common/animals").build();
Expand All @@ -236,7 +235,6 @@ public void testShouldNotGetCookieOnDifferentDomain() {
}

@Test
@NotYetImplemented(CHROME)
public void testShouldBeAbleToAddToADomainWhichIsRelatedToTheCurrentDomain() {
String cookieName = "name";
assertCookieIsNotPresentWithName(cookieName);
Expand Down Expand Up @@ -425,7 +423,6 @@ public void canHandleHttpOnlyCookie() {
}

@Test
@NotYetImplemented(CHROME)
@Ignore(SAFARI)
public void testRetainsHttpOnlyFlag() {
Cookie addedCookie =
Expand Down
3 changes: 0 additions & 3 deletions java/client/test/org/openqa/selenium/ProxySettingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

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 All @@ -41,7 +40,6 @@
import org.openqa.selenium.testing.NeedsLocalEnvironment;
import org.openqa.selenium.testing.NoDriverAfterTest;
import org.openqa.selenium.testing.NoDriverBeforeTest;
import org.openqa.selenium.testing.NotYetImplemented;
import org.seleniumhq.jetty9.server.Handler;
import org.seleniumhq.jetty9.server.Request;
import org.seleniumhq.jetty9.server.Server;
Expand Down Expand Up @@ -145,7 +143,6 @@ public void canConfigureProxyThroughPACFile() {
@NeedsLocalEnvironment
@NoDriverBeforeTest
@NoDriverAfterTest
@NotYetImplemented(CHROME)
@Ignore(EDGE)
public void canUsePACThatOnlyProxiesCertainHosts() {
Server helloServer = createSimpleHttpServer(
Expand Down
2 changes: 0 additions & 2 deletions java/client/test/org/openqa/selenium/ReferrerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
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,7 +297,6 @@ public void crossDomainHistoryNavigationWhenProxyInterceptsHostRequests() {
@Ignore(MARIONETTE)
@Ignore(value = FIREFOX, travis=true)
@NeedsLocalEnvironment
@NotYetImplemented(CHROME)
@Ignore(EDGE)
public void navigationWhenProxyInterceptsASpecificUrl() {
testServer1.start();
Expand Down

0 comments on commit d1d3728

Please sign in to comment.