using
InAppBrowser.OpenURL(url);
will open the browser but if I try to load another url in the same browser session, the display does not change and a InAppBroswer.Close() is required first.
The url I’m trying to load is a route under the same host that is loaded.
so an example would be:
InAppBrowser.OpenURL("https://www.something.com/login");
if I get routed to an error page I call
InAppBrowser.OpenURL("https://www.something.com/play?recover=true");
The login page stays on top and active even though the console shows complete on the other route.