Fix flaky automation tests

pull/4029/head
Bogdan 9 months ago
parent 9e1e35cc26
commit ee64448569

@ -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