diff --git a/src/Testime.Automation/Web/WebApplication.cs b/src/Testime.Automation/Web/WebApplication.cs index ea2504f..a6c6b0f 100644 --- a/src/Testime.Automation/Web/WebApplication.cs +++ b/src/Testime.Automation/Web/WebApplication.cs @@ -39,7 +39,7 @@ public TPage OpenPage() where TPage : HtmlPage, new() public TPage NavigatePage(string url) where TPage : HtmlPage, new() { - _driver.Navigate().GoToUrl($"{Url}/{url.TrimStart('/')}"); + _driver.Navigate().GoToUrl($"{Url.ToString().TrimEnd('/')}/{url.TrimStart('/')}"); return OpenPage(); }