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

22 lines
440 B

using System.Linq;
using FluentAssertions;
using OpenQA.Selenium.Remote;
namespace NzbDrone.Web.UI.Automation.Fluent
{
public class DriverAssertion
{
private readonly RemoteWebDriver _driver;
public DriverAssertion(RemoteWebDriver driver)
{
_driver = driver;
}
public void BeNzbDronePage()
{
_driver.Title.Should().EndWith("NzbDrone");
}
}
}