I am trying to read a table and get the fields i need from that table with Webview2.

I am able to get the source code of the webpage but I'm stumped beyond that.
Private Async Function WebView2_NavigationCompletedAsync(sender As Object, e As CoreWebView2NavigationCompletedEventArgs) As Task Handles WebView21.NavigationCompleted
Dim html As String
html = Await WebView21.ExecuteScriptAsync("document.documentElement.outerHTML;")
html = Regex.Unescape(html)
html = html.Remove(0, 1)
html = html.Remove(html.Length - 1, 1)
End Function