Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1e815e7525efc64c7be0021b7239c1c56eafdcf4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
2 additions and
12 deletions
@ -40,14 +40,12 @@ namespace NzbDrone.Automation.Test
_runner . KillAll ( ) ;
_runner . Start ( ) ;
driver . Url = "http://localhost:8989" ;
var page = new PageBase ( driver ) ;
page . WaitForNoSpinner ( ) ;
GetPageErrors ( ) . Should ( ) . BeEmpty ( ) ;
}
protected IEnumerable < string > GetPageErrors ( )
@ -1,7 +1,6 @@
using FluentAssertions ;
using NUnit.Framework ;
using NzbDrone.Automation.Test.PageModel ;
using NzbDrone.Test.Common ;
using OpenQA.Selenium ;
namespace NzbDrone.Automation.Test
@ -11,12 +10,10 @@ namespace NzbDrone.Automation.Test
{
private PageBase page ;
[SetUp]
public void Setup ( )
{
page = new PageBase ( driver ) ;
ExceptionVerification . MarkInconclusive ( typeof ( StaleElementReferenceException ) ) ;
}
[Test]
@ -27,11 +27,10 @@ namespace NzbDrone.Automation.Test.PageModel
return wait . Until ( d = > d . FindElement ( by ) ) ;
}
public void WaitForNoSpinner ( int timeout = 30 )
{
//give the spinner some time to show up.
Thread . Sleep ( 1 00) ;
Thread . Sleep ( 2 00) ;
var wait = new WebDriverWait ( _driver , TimeSpan . FromSeconds ( timeout ) ) ;
wait . Until ( d = >
@ -48,7 +47,6 @@ namespace NzbDrone.Automation.Test.PageModel
} ) ;
}
public IWebElement SeriesNavIcon
{
get
@ -96,6 +94,5 @@ namespace NzbDrone.Automation.Test.PageModel
return FindByClass ( "x-system-nav" ) ;
}
}
}
}
@ -1,6 +1,4 @@
using System ;
using System ;
using System.Collections.Generic ;
using System.Linq ;
using NLog ;