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/106f073cf2ded9c43e9330c97dbc283b5da6c3e9/NzbDrone.Web.UI.Test/Fluent/AssertionExtention.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/NzbDrone.Web.UI.Test/Fluent/AssertionExtention.cs

13 lines
304 B

using System.Linq;
using OpenQA.Selenium.Remote;
namespace NzbDrone.Web.UI.Automation.Fluent
{
public static class AssertionExtention
{
public static DriverAssertion Should(this RemoteWebDriver actualValue)
{
return new DriverAssertion(actualValue);
}
}
}