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

13 lines
304 B

13 years ago
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);
}
}
}