@@ -74,7 +74,6 @@ public void setUp() {
7474 }
7575
7676 @ Test
77- @ NotYetImplemented (SAFARI )
7877 public void testShouldGetCookieByName () {
7978 String key = generateUniqueKey ();
8079 String value = "set" ;
@@ -87,7 +86,6 @@ public void testShouldGetCookieByName() {
8786 }
8887
8988 @ Test
90- @ NotYetImplemented (SAFARI )
9189 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
9290 public void testShouldBeAbleToAddCookie () {
9391 String key = generateUniqueKey ();
@@ -104,7 +102,6 @@ public void testShouldBeAbleToAddCookie() {
104102 }
105103
106104 @ Test
107- @ NotYetImplemented (SAFARI )
108105 public void testGetAllCookies () {
109106 String key1 = generateUniqueKey ();
110107 String key2 = generateUniqueKey ();
@@ -130,7 +127,6 @@ public void testGetAllCookies() {
130127 }
131128
132129 @ Test
133- @ NotYetImplemented (SAFARI )
134130 public void testDeleteAllCookies () {
135131 addCookieOnServerSide (new Cookie ("foo" , "set" ));
136132 assertSomeCookiesArePresent ();
@@ -144,7 +140,6 @@ public void testDeleteAllCookies() {
144140 }
145141
146142 @ Test
147- @ NotYetImplemented (SAFARI )
148143 public void testDeleteCookieWithName () {
149144 String key1 = generateUniqueKey ();
150145 String key2 = generateUniqueKey ();
@@ -166,7 +161,6 @@ public void testDeleteCookieWithName() {
166161 }
167162
168163 @ Test
169- @ NotYetImplemented (SAFARI )
170164 public void testShouldNotDeleteCookiesWithASimilarName () {
171165 String cookieOneName = "fish" ;
172166 Cookie cookie1 = new Cookie .Builder (cookieOneName , "cod" ).build ();
@@ -187,7 +181,6 @@ public void testShouldNotDeleteCookiesWithASimilarName() {
187181 }
188182
189183 @ Test
190- @ NotYetImplemented (SAFARI )
191184 public void testAddCookiesWithDifferentPathsThatAreRelatedToOurs () {
192185 driver .get (domainHelper .getUrlForFirstValidHostname ("/common/animals" ));
193186 Cookie cookie1 = new Cookie .Builder ("fish" , "cod" ).path ("/common/animals" ).build ();
@@ -224,7 +217,6 @@ public void testGetCookiesInAFrame() {
224217 }
225218
226219 @ Test
227- @ NotYetImplemented (SAFARI )
228220 public void testCannotGetCookiesWithPathDifferingOnlyInCase () {
229221 String cookieName = "fish" ;
230222 Cookie cookie = new Cookie .Builder (cookieName , "cod" ).path ("/Common/animals" ).build ();
@@ -235,7 +227,7 @@ public void testCannotGetCookiesWithPathDifferingOnlyInCase() {
235227 }
236228
237229 @ Test
238- @ NotYetImplemented ( SAFARI )
230+
239231 public void testShouldNotGetCookieOnDifferentDomain () {
240232 assumeTrue (domainHelper .checkHasValidAlternateHostname ());
241233
@@ -249,7 +241,6 @@ public void testShouldNotGetCookieOnDifferentDomain() {
249241 }
250242
251243 @ Test
252- @ NotYetImplemented (SAFARI )
253244 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
254245 public void testShouldBeAbleToAddToADomainWhichIsRelatedToTheCurrentDomain () {
255246 String cookieName = "name" ;
@@ -289,7 +280,7 @@ void testShouldBeAbleToIncludeLeadingPeriodInDomainName() {
289280 }
290281
291282 @ Test
292- @ NotYetImplemented ( SAFARI )
283+
293284 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
294285 public void testShouldBeAbleToSetDomainToTheCurrentDomain () throws Exception {
295286 URI url = new URI (driver .getCurrentUrl ());
@@ -304,7 +295,7 @@ public void testShouldBeAbleToSetDomainToTheCurrentDomain() throws Exception {
304295 }
305296
306297 @ Test
307- @ NotYetImplemented ( SAFARI )
298+
308299 @ NotWorkingInRemoteBazelBuilds (CHROME )
309300 @ NotWorkingInRemoteBazelBuilds (EDGE )
310301 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
@@ -336,7 +327,7 @@ public void testShouldWalkThePathToDeleteACookie() {
336327 }
337328
338329 @ Test
339- @ NotYetImplemented ( SAFARI )
330+
340331 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
341332 public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie () throws Exception {
342333 URI uri = new URI (driver .getCurrentUrl ());
@@ -352,7 +343,7 @@ public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie() throws
352343 }
353344
354345 @ Test
355- @ NotYetImplemented ( SAFARI )
346+
356347 @ NotWorkingInRemoteBazelBuilds (CHROME )
357348 @ NotWorkingInRemoteBazelBuilds (EDGE )
358349 @ NotWorkingInRemoteBazelBuilds (FIREFOX )
@@ -383,7 +374,7 @@ public void testCookieEqualityAfterSetAndGet() {
383374 }
384375
385376 @ Test
386- @ NotYetImplemented ( SAFARI )
377+
387378 public void testRetainsCookieExpiry () {
388379 Cookie addedCookie =
389380 new Cookie .Builder ("fish" , "cod" )
@@ -470,7 +461,7 @@ public void testRetainsHttpOnlyFlag() {
470461 }
471462
472463 @ Test
473- @ NotYetImplemented ( SAFARI )
464+
474465 public void testSettingACookieThatExpiredInThePast () {
475466 long expires = System .currentTimeMillis () - 1000 ;
476467 Cookie cookie = new Cookie .Builder ("expired" , "yes" ).expiresOn (new Date (expires )).build ();
@@ -483,7 +474,7 @@ public void testSettingACookieThatExpiredInThePast() {
483474 }
484475
485476 @ Test
486- @ NotYetImplemented ( SAFARI )
477+
487478 public void testCanSetCookieWithoutOptionalFieldsSet () {
488479 String key = generateUniqueKey ();
489480 String value = "foo" ;
@@ -496,7 +487,7 @@ public void testCanSetCookieWithoutOptionalFieldsSet() {
496487 }
497488
498489 @ Test
499- @ NotYetImplemented ( SAFARI )
490+
500491 public void testDeleteNotExistedCookie () {
501492 String key = generateUniqueKey ();
502493 assertCookieIsNotPresentWithName (key );
@@ -637,7 +628,7 @@ private void addCookieOnServerSide(Cookie cookie) {
637628 }
638629
639630 @ Test
640- @ NotYetImplemented ( SAFARI )
631+
641632 public void deleteAllCookies () {
642633 assumeTrue (domainHelper .checkHasValidAlternateHostname ());
643634
0 commit comments