diff --git a/src/NzbDrone.Automation.Test/MainPagesTest.cs b/src/NzbDrone.Automation.Test/MainPagesTest.cs index 0b20f3c359..f10969108d 100644 --- a/src/NzbDrone.Automation.Test/MainPagesTest.cs +++ b/src/NzbDrone.Automation.Test/MainPagesTest.cs @@ -45,12 +45,12 @@ public void history_page() } [Test] - public void missing_page() + public void wanted_page() { - page.MissingNavIcon.Click(); + page.WantedNavIcon.Click(); page.WaitForNoSpinner(); - page.FindByClass("iv-missing-missinglayout").Should().NotBeNull(); + page.FindByClass("iv-wanted-missing-missinglayout").Should().NotBeNull(); } [Test] diff --git a/src/NzbDrone.Automation.Test/PageModel/PageBase.cs b/src/NzbDrone.Automation.Test/PageModel/PageBase.cs index 3ed74c8fbd..6ba89f5ea9 100644 --- a/src/NzbDrone.Automation.Test/PageModel/PageBase.cs +++ b/src/NzbDrone.Automation.Test/PageModel/PageBase.cs @@ -72,11 +72,11 @@ public IWebElement HistoryNavIcon } } - public IWebElement MissingNavIcon + public IWebElement WantedNavIcon { get { - return Find(By.LinkText("Missing")); + return Find(By.LinkText("Wanted")); } }