mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
Bootstrap 3
New: Updated UI New: Mobile browser support Fixed: /favicon.ico will return the favicon now
This commit is contained in:
@@ -13,6 +13,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
public PageBase(RemoteWebDriver driver)
|
||||
{
|
||||
_driver = driver;
|
||||
driver.Manage().Window.Maximize();
|
||||
}
|
||||
|
||||
public IWebElement FindByClass(string className, int timeout = 5)
|
||||
@@ -52,7 +53,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.LinkText("Series"));
|
||||
return FindByClass("x-series-nav");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,7 +61,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.LinkText("Calendar"));
|
||||
return FindByClass("x-calendar-nav");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,7 +69,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.LinkText("History"));
|
||||
return FindByClass("x-history-nav");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -76,7 +77,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.LinkText("Wanted"));
|
||||
return FindByClass("x-wanted-nav");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,7 +85,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.LinkText("Settings"));
|
||||
return FindByClass("x-settings-nav");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,7 +93,7 @@ namespace NzbDrone.Automation.Test.PageModel
|
||||
{
|
||||
get
|
||||
{
|
||||
return Find(By.PartialLinkText("System"));
|
||||
return FindByClass("x-system-nav");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user