Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/fdd4a6c6322040b9e683f92afcf47e9417483a89/NzbDrone.Web.UI.Test/BasicPageFixture.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Web.UI.Test/BasicPageFixture.cs

50 lines
977 B

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();
}
}
}