diff --git a/src/NzbDrone.Automation.Test/MainPagesTest.cs b/src/NzbDrone.Automation.Test/MainPagesTest.cs index e1d411f22..4b42be06c 100644 --- a/src/NzbDrone.Automation.Test/MainPagesTest.cs +++ b/src/NzbDrone.Automation.Test/MainPagesTest.cs @@ -18,7 +18,6 @@ namespace NzbDrone.Automation.Test } [Test] - [Retry(3)] public void indexer_page() { _page.MovieNavIcon.Click(); @@ -31,7 +30,6 @@ namespace NzbDrone.Automation.Test } [Test] - [Retry(3)] public void system_page() { _page.SystemNavIcon.Click(); diff --git a/src/NzbDrone.Automation.Test/PageModel/PageBase.cs b/src/NzbDrone.Automation.Test/PageModel/PageBase.cs index a32084602..02078c47e 100644 --- a/src/NzbDrone.Automation.Test/PageModel/PageBase.cs +++ b/src/NzbDrone.Automation.Test/PageModel/PageBase.cs @@ -39,6 +39,10 @@ namespace NzbDrone.Automation.Test.PageModel var element = d.FindElement(By.ClassName("followingBalls")); return !element.Displayed; } + catch (StaleElementReferenceException) + { + return true; + } catch (NoSuchElementException) { return true;