2020import static org .assertj .core .api .Assertions .assertThat ;
2121import static org .assertj .core .api .Assertions .assertThatExceptionOfType ;
2222import static org .openqa .selenium .testing .drivers .Browser .CHROME ;
23+ import static org .openqa .selenium .testing .drivers .Browser .EDGE ;
2324import static org .openqa .selenium .testing .drivers .Browser .FIREFOX ;
2425import static org .openqa .selenium .testing .drivers .Browser .IE ;
2526import static org .openqa .selenium .testing .drivers .Browser .SAFARI ;
@@ -100,6 +101,7 @@ void testShouldNotBeAbleToLocateByIdMultipleElementsThatDoNotExist() {
100101
101102 @ Test
102103 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
104+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
103105 void testFindingASingleElementByEmptyIdShouldThrow () {
104106 driver .get (pages .formPage );
105107 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -108,6 +110,7 @@ void testFindingASingleElementByEmptyIdShouldThrow() {
108110
109111 @ Test
110112 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
113+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
111114 public void testFindingMultipleElementsByEmptyIdShouldThrow () {
112115 driver .get (pages .formPage );
113116 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -318,6 +321,7 @@ void testShouldNotFindElementByClassWhenTheNameQueriedIsShorterThanCandidateName
318321
319322 @ Test
320323 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
324+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
321325 void testFindingASingleElementByEmptyClassNameShouldThrow () {
322326 driver .get (pages .xhtmlTestPage );
323327 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -326,6 +330,7 @@ void testFindingASingleElementByEmptyClassNameShouldThrow() {
326330
327331 @ Test
328332 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
333+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
329334 void testFindingMultipleElementsByEmptyClassNameShouldThrow () {
330335 driver .get (pages .xhtmlTestPage );
331336 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -439,6 +444,7 @@ void testShouldThrowAnExceptionWhenThereIsNoLinkToClick() {
439444
440445 @ Test
441446 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
447+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
442448 void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElement () {
443449 driver .get (pages .formPage );
444450 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -447,6 +453,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDri
447453
448454 @ Test
449455 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
456+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
450457 void
451458 testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElements () {
452459 driver .get (pages .formPage );
@@ -456,6 +463,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDri
456463
457464 @ Test
458465 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
466+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
459467 void
460468 testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElement () {
461469 driver .get (pages .formPage );
@@ -466,6 +474,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDri
466474
467475 @ Test
468476 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
477+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
469478 void
470479 testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElements () {
471480 driver .get (pages .formPage );
@@ -476,6 +485,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDri
476485
477486 @ Test
478487 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
488+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
479489 void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElement () {
480490 driver .get (pages .formPage );
481491 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -484,6 +494,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFin
484494
485495 @ Test
486496 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
497+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
487498 void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElements () {
488499 driver .get (pages .formPage );
489500 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -492,6 +503,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFin
492503
493504 @ Test
494505 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
506+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
495507 void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElement () {
496508 driver .get (pages .formPage );
497509
@@ -502,6 +514,7 @@ void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFi
502514
503515 @ Test
504516 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
517+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
505518 void testShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElements () {
506519 driver .get (pages .formPage );
507520 WebElement body = driver .findElement (By .tagName ("body" ));
@@ -582,6 +595,7 @@ void testShouldNotFindElementsByCssSelectorWhenThereIsNoSuchElement() {
582595
583596 @ Test
584597 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
598+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
585599 void testFindingASingleElementByEmptyCssSelectorShouldThrow () {
586600 driver .get (pages .xhtmlTestPage );
587601 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -590,6 +604,7 @@ void testFindingASingleElementByEmptyCssSelectorShouldThrow() {
590604
591605 @ Test
592606 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
607+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
593608 void testFindingMultipleElementsByEmptyCssSelectorShouldThrow () {
594609 driver .get (pages .xhtmlTestPage );
595610 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -598,6 +613,7 @@ void testFindingMultipleElementsByEmptyCssSelectorShouldThrow() {
598613
599614 @ Test
600615 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
616+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
601617 void testFindingASingleElementByInvalidCssSelectorShouldThrow () {
602618 driver .get (pages .xhtmlTestPage );
603619 assertThatExceptionOfType (InvalidSelectorException .class )
@@ -606,6 +622,7 @@ void testFindingASingleElementByInvalidCssSelectorShouldThrow() {
606622
607623 @ Test
608624 @ Ignore (value = CHROME , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
625+ @ Ignore (value = EDGE , reason = "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" )
609626 void testFindingMultipleElementsByInvalidCssSelectorShouldThrow () {
610627 driver .get (pages .xhtmlTestPage );
611628 assertThatExceptionOfType (InvalidSelectorException .class )
0 commit comments