Fix flaky automation tests

sonarr-pull-b20e247f
Bogdan 9 months 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