I am using WebView to load my authentication web page. After the successful authentication, I need to get some values from html source content. can anyone helm to read the s
Here is my code:
private async Task GetHtml() { return await LoginWebViewItem.EvaluateJavaScriptAsync("document.body.innerHTML"); }
Then I call this from my method:
string AllHtml = await GetHtml();