diff --git a/src/NzbDrone.Automation.Test/MainPagesTest.cs b/src/NzbDrone.Automation.Test/MainPagesTest.cs index 0b20f3c35..f10969108 100644 --- a/src/NzbDrone.Automation.Test/MainPagesTest.cs +++ b/src/NzbDrone.Automation.Test/MainPagesTest.cs @@ -45,12 +45,12 @@ namespace NzbDrone.Automation.Test } [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 3ed74c8fb..6ba89f5ea 100644 --- a/src/NzbDrone.Automation.Test/PageModel/PageBase.cs +++ b/src/NzbDrone.Automation.Test/PageModel/PageBase.cs @@ -72,11 +72,11 @@ namespace NzbDrone.Automation.Test.PageModel } } - public IWebElement MissingNavIcon + public IWebElement WantedNavIcon { get { - return Find(By.LinkText("Missing")); + return Find(By.LinkText("Wanted")); } }