21
21
import static org .junit .jupiter .api .Assumptions .assumeTrue ;
22
22
import static org .openqa .selenium .testing .drivers .Browser .ALL ;
23
23
import static org .openqa .selenium .testing .drivers .Browser .CHROME ;
24
+ import static org .openqa .selenium .testing .drivers .Browser .EDGE ;
24
25
import static org .openqa .selenium .testing .drivers .Browser .FIREFOX ;
25
26
import static org .openqa .selenium .testing .drivers .Browser .IE ;
26
27
import static org .openqa .selenium .testing .drivers .Browser .SAFARI ;
@@ -205,6 +206,7 @@ public void testAddCookiesWithDifferentPathsThatAreRelatedToOurs() {
205
206
@ Test
206
207
@ Ignore (SAFARI )
207
208
@ NotWorkingInRemoteBazelBuilds (CHROME )
209
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
208
210
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
209
211
public void testGetCookiesInAFrame () {
210
212
driver .get (domainHelper .getUrlForFirstValidHostname ("/common/animals" ));
@@ -301,6 +303,7 @@ public void testShouldBeAbleToSetDomainToTheCurrentDomain() throws Exception {
301
303
@ Test
302
304
@ NotYetImplemented (SAFARI )
303
305
@ NotWorkingInRemoteBazelBuilds (CHROME )
306
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
304
307
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
305
308
public void testShouldWalkThePathToDeleteACookie () {
306
309
Cookie cookie1 = new Cookie .Builder ("fish" , "cod" ).build ();
@@ -348,6 +351,7 @@ public void testShouldIgnoreThePortNumberOfTheHostWhenSettingTheCookie() throws
348
351
@ Test
349
352
@ NotYetImplemented (SAFARI )
350
353
@ NotWorkingInRemoteBazelBuilds (CHROME )
354
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
351
355
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
352
356
public void testCookieEqualityAfterSetAndGet () {
353
357
driver .get (domainHelper .getUrlForFirstValidHostname ("animals" ));
@@ -394,6 +398,7 @@ public void testRetainsCookieExpiry() {
394
398
@ Ignore (IE )
395
399
@ Ignore (SAFARI )
396
400
@ NotWorkingInRemoteBazelBuilds (CHROME )
401
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
397
402
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
398
403
public void canHandleSecureCookie () {
399
404
driver .get (domainHelper .getSecureUrlForFirstValidHostname ("animals" ));
@@ -412,6 +417,7 @@ public void canHandleSecureCookie() {
412
417
@ Ignore (IE )
413
418
@ Ignore (SAFARI )
414
419
@ NotWorkingInRemoteBazelBuilds (CHROME )
420
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
415
421
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
416
422
public void testRetainsCookieSecure () {
417
423
driver .get (domainHelper .getSecureUrlForFirstValidHostname ("animals" ));
@@ -430,6 +436,7 @@ public void testRetainsCookieSecure() {
430
436
@ Test
431
437
@ Ignore (SAFARI )
432
438
@ NotWorkingInRemoteBazelBuilds (CHROME )
439
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
433
440
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
434
441
public void canHandleHttpOnlyCookie () {
435
442
Cookie addedCookie =
@@ -445,6 +452,7 @@ public void canHandleHttpOnlyCookie() {
445
452
@ Test
446
453
@ Ignore (SAFARI )
447
454
@ NotWorkingInRemoteBazelBuilds (CHROME )
455
+ @ NotWorkingInRemoteBazelBuilds (EDGE )
448
456
@ NotWorkingInRemoteBazelBuilds (FIREFOX )
449
457
public void testRetainsHttpOnlyFlag () {
450
458
Cookie addedCookie =
0 commit comments