We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9078eba commit 4edf929Copy full SHA for 4edf929
dotnet/test/common/PageLoadingTest.cs
@@ -236,6 +236,12 @@ public void ShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumentCloseCall()
236
[IgnoreBrowser(Browser.Safari, "See issue 687, comment 41")]
237
public void ShouldTimeoutIfAPageTakesTooLongToLoad()
238
{
239
+ if (TestUtilities.IsMarionette(driver))
240
+ {
241
+ // Don't run this test on Marionette.
242
+ Assert.Ignore("Driver does not return control from timeout wait when executed via Marionette");
243
+ }
244
+
245
driver.Manage().Timeouts().SetPageLoadTimeout(TimeSpan.FromSeconds(2));
246
247
try
0 commit comments