1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Web.UI.Test/BasicPageFixture.cs

50 lines
977 B
C#

using System.Linq;
using NUnit.Framework;
using NzbDrone.Web.UI.Automation.Fluent;
namespace NzbDrone.Web.UI.Automation
{
[TestFixture]
[Explicit]
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();
}
}
}