I'm trying to write some values to a login form, submit it, and then grab some data on the results page using DotNetBrowser in a c# project, but for some reason, I cannot seem to get at the resulting text.
Filling and submitting the form works fine, but once the results come back, I would expect this to work similarly to get a value from the results page, but it does not:
var msg = browser.ExecuteJavaScriptAndReturnValue("$('table.MyTable').outerHTML").ToString();
I've been looking at a documentation page to find the answer, but the code is different enough that I'm not sure how to implement it: https://dotnetbrowser.support.teamdev.com/support/solutions/articles/9000109868-calling-javascript-from-net
What am I missing, any ideas?