diff --git a/java/test/org/openqa/selenium/bidi/storage/BUILD.bazel b/java/test/org/openqa/selenium/bidi/storage/BUILD.bazel index 96db6d7d060d2..b631b5e11cb16 100644 --- a/java/test/org/openqa/selenium/bidi/storage/BUILD.bazel +++ b/java/test/org/openqa/selenium/bidi/storage/BUILD.bazel @@ -8,6 +8,7 @@ java_selenium_test_suite( browsers = [ "chrome", "firefox", + "edge", ], tags = [ "selenium-remote", diff --git a/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest.java b/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest.java index e3cccf69209c4..c898f63737d49 100644 --- a/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest.java +++ b/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest.java @@ -63,7 +63,6 @@ public void setUp() { } @Test - @NotYetImplemented(EDGE) public void canGetCookieByName() { String key = generateUniqueKey(); String value = "set"; @@ -124,7 +123,6 @@ public void canGetCookieInDefaultUserContext() { } @Test - @NotYetImplemented(EDGE) public void canGetCookieInAUserContext() { Browser browser = new Browser(driver); String userContext = browser.createUserContext(); @@ -177,7 +175,6 @@ key, new BytesValue(BytesValue.Type.STRING, value), appServer.getHostName()), } @Test - @NotYetImplemented(EDGE) public void canAddCookie() { String key = generateUniqueKey(); String value = "foo"; @@ -289,7 +286,6 @@ public void canGetAllCookies() { } @Test - @NotYetImplemented(EDGE) public void canDeleteAllCookies() { addCookieOnServerSide(new Cookie("foo", "set")); assertSomeCookiesArePresent(); @@ -303,7 +299,6 @@ public void canDeleteAllCookies() { } @Test - @NotYetImplemented(EDGE) public void canDeleteCookieWithName() { String key1 = generateUniqueKey(); String key2 = generateUniqueKey(); @@ -325,7 +320,6 @@ public void canDeleteCookieWithName() { } @Test - @NotYetImplemented(EDGE) public void testAddCookiesWithDifferentPathsThatAreRelatedToOurs() { driver.get(appServer.whereIs("/common/animals"));