WebWindow
WebWindow copied to clipboard
NavigateToUrl is incorrectly looking for file.
Summary
NavigateToUrl method is incorrectly looking for file instead of navigating to given url.
How to reproduce
Platform: Windows 10 x64 Framework: netcoreapp3.1 Version:
<PackageReference Include="WebWindow" Version="0.1.0-20200214.10" />
Code:
var webWindow = new WebWindow("Test");
webWindow.NavigateToUrl("https://www.google.com");
webWindow.WaitForExit();
Expected result: Window will show page from domain: www.google.com
Actual result:
Same issue.