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