Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/6897d44b383f421db7ece226ee45ae9efbf41f6b/NzbDrone.Web.UI.Test/BasicPageFixture.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/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();
}
}
}