SteveSandersonMS / WebWindow

.NET Core library to open native OS windows containing web UI on Windows, Mac, and Linux. Experimental.
Apache License 2.0
1.99k stars 215 forks source link

NavigateToUrl is incorrectly looking for file. #114

Open vladimir-aubrecht opened 4 years ago

vladimir-aubrecht commented 4 years ago

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: image

SummerFalls commented 3 years ago

Same issue.