Hi,
I've strange issue, when trying to extract inner html from a WebView I get all '<' characters replaced with '\u003C' and also all tabs as '\t'
This is how I extract inner html:
private async Task<string> GetHtml()
{
return await webView.EvaluateJavaScriptAsync( "document.body.innerHTML" );
}
Any idea how can I avoid this?