mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Wait longer for spinner in automation tests
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user