@@ -438,13 +438,15 @@ public void ShouldThrowAnExceptionWhenThereIsNoLinkToClick()
438438 }
439439
440440 [ Test ]
441+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
441442 public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElement ( )
442443 {
443444 driver . Url = formsPage ;
444445 Assert . That ( ( ) => driver . FindElement ( By . XPath ( "this][isnot][valid" ) ) , Throws . InstanceOf < InvalidSelectorException > ( ) ) ;
445446 }
446447
447448 [ Test ]
449+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
448450 public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInDriverFindElements ( )
449451 {
450452 if ( TestUtilities . IsIE6 ( driver ) )
@@ -458,6 +460,7 @@ public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidIn
458460 }
459461
460462 [ Test ]
463+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
461464 public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElement ( )
462465 {
463466 driver . Url = formsPage ;
@@ -466,6 +469,7 @@ public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidIn
466469 }
467470
468471 [ Test ]
472+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
469473 public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidInElementFindElements ( )
470474 {
471475 driver . Url = formsPage ;
@@ -474,13 +478,15 @@ public void ShouldThrowInvalidSelectorExceptionWhenXPathIsSyntacticallyInvalidIn
474478 }
475479
476480 [ Test ]
481+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
477482 public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElement ( )
478483 {
479484 driver . Url = formsPage ;
480485 Assert . That ( ( ) => driver . FindElement ( By . XPath ( "count(//input)" ) ) , Throws . InstanceOf < InvalidSelectorException > ( ) ) ;
481486 }
482487
483488 [ Test ]
489+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
484490 public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriverFindElements ( )
485491 {
486492 if ( TestUtilities . IsIE6 ( driver ) )
@@ -494,6 +500,7 @@ public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInDriver
494500 }
495501
496502 [ Test ]
503+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
497504 public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElement ( )
498505 {
499506 driver . Url = formsPage ;
@@ -503,6 +510,7 @@ public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElemen
503510 }
504511
505512 [ Test ]
513+ [ IgnoreBrowser ( Browser . Chrome , "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743" ) ]
506514 public void ShouldThrowInvalidSelectorExceptionWhenXPathReturnsWrongTypeInElementFindElements ( )
507515 {
508516 if ( TestUtilities . IsIE6 ( driver ) )
0 commit comments