Wait longer for spinner in automation tests

This commit is contained in:
Mark McDowall
2014-08-11 21:26:49 -07:00
parent 9e0c8a60b4
commit 1e815e7525
4 changed files with 2 additions and 12 deletions

View File

@@ -27,11 +27,10 @@ namespace NzbDrone.Automation.Test.PageModel
return wait.Until(d => d.FindElement(by));
}
public void WaitForNoSpinner(int timeout = 30)
{
//give the spinner some time to show up.
Thread.Sleep(100);
Thread.Sleep(200);
var wait = new WebDriverWait(_driver, TimeSpan.FromSeconds(timeout));
wait.Until(d =>
@@ -48,7 +47,6 @@ namespace NzbDrone.Automation.Test.PageModel
});
}
public IWebElement SeriesNavIcon
{
get
@@ -96,6 +94,5 @@ namespace NzbDrone.Automation.Test.PageModel
return FindByClass("x-system-nav");
}
}
}
}