You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/NzbDrone.Web.UI.Test/BasicPageFixture.cs

43 lines
927 B

using System.Linq;
using NUnit.Framework;
using NzbDrone.Web.UI.Automation.Fluent;
namespace NzbDrone.Web.UI.Automation
{
public class BasicPageFixture : AutomationTestBase
{
[Test]
public void HomePage()
{
Driver.GivenHomePage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void HistoryPage()
{
Driver.GivenHistoryPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void MissingPage()
{
Driver.GivenMissingPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void SettingsPage()
{
Driver.GivenSettingsPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
}
}