Fix flaky automation tests

pull/9036/head
Bogdan 1 year ago committed by Qstick
parent c75d398f14
commit def127b93f

@ -40,6 +40,10 @@ namespace NzbDrone.Automation.Test.PageModel
var element = d.FindElement(By.ClassName("followingBalls"));
return !element.Displayed;
}
catch (StaleElementReferenceException)
{
return true;
}
catch (NoSuchElementException)
{
return true;

Loading…
Cancel
Save