1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-27 02:43:57 +02:00

Earlier screenshot.

This commit is contained in:
kay.one 2011-12-18 21:38:52 -08:00
parent b8def06782
commit 2cbc78c780

View File

@ -11,29 +11,34 @@ public class BasicPageFixture : AutomationTestBase
[Test]
public void HomePage()
{
Driver.GivenHomePage().Should().BeNzbDronePage();
Driver.GivenHomePage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void HistoryPage()
{
Driver.GivenHistoryPage().Should().BeNzbDronePage();
Driver.GivenHistoryPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void MissingPage()
{
Driver.GivenMissingPage().Should().BeNzbDronePage();
Driver.GivenMissingPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
[Test]
public void SettingsPage()
{
Driver.GivenSettingsPage().Should().BeNzbDronePage();
Driver.GivenSettingsPage();
CaptureScreen();
Driver.Should().BeNzbDronePage();
}
}