Skip to content

Commit 755d254

Browse files
committed
1 parent 49352f9 commit 755d254

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

dotnet/test/common/ClearTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public void WritableTextInputShouldClear()
1616
}
1717

1818
[Test]
19+
[IgnoreBrowser(Browser.Chrome, "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743")]
1920
public void TextInputShouldNotClearWhenDisabled()
2021
{
2122
driver.Url = readOnlyPage;
@@ -42,6 +43,7 @@ public void WritableTextAreaShouldClear()
4243
}
4344

4445
[Test]
46+
[IgnoreBrowser(Browser.Chrome, "https://bugs.chromium.org/p/chromedriver/issues/detail?id=4743")]
4547
public void TextAreaShouldNotClearWhenDisabled()
4648
{
4749
driver.Url = readOnlyPage;

dotnet/test/common/ElementFindingTest.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)