Skip to content

Commit

Permalink
Ignoring .NET test for Marionette that causes cascading failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevanssfdc committed Jan 28, 2016
1 parent 9078eba commit 4edf929
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dotnet/test/common/PageLoadingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,12 @@ public void ShouldNotHangIfDocumentOpenCallIsNeverFollowedByDocumentCloseCall()
[IgnoreBrowser(Browser.Safari, "See issue 687, comment 41")]
public void ShouldTimeoutIfAPageTakesTooLongToLoad()
{
if (TestUtilities.IsMarionette(driver))
{
// Don't run this test on Marionette.
Assert.Ignore("Driver does not return control from timeout wait when executed via Marionette");
}

driver.Manage().Timeouts().SetPageLoadTimeout(TimeSpan.FromSeconds(2));

try
Expand Down

0 comments on commit 4edf929

Please sign in to comment.