You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.That(ex.Message.Contains("Other element would receive the click"));
390
+
Assert.That(()=>driver.FindElement(By.Id("under")).Click(),Throws.InstanceOf<WebDriverException>().With.Message.Contains("Other element would receive the click"));
393
391
}
394
392
395
393
[Test]
@@ -422,8 +420,9 @@ public void ClickPartiallyOverlappingElements()
422
420
}
423
421
424
422
[Test]
425
-
[IgnoreBrowser(Browser.Firefox)]
426
-
[IgnoreBrowser(Browser.Chrome)]
423
+
[IgnoreBrowser(Browser.IE,"Driver checks for overlapping elements")]
424
+
[IgnoreBrowser(Browser.Firefox,"Driver checks for overlapping elements")]
425
+
[IgnoreBrowser(Browser.Chrome,"Driver checks for overlapping elements")]
0 commit comments