I am parsing / scraping data in a web page using c# and the WebBrowser control. I would like to get the page as rendered, after all Javascript has run; however, loading the document text only loads what is essentially the page source. I would like the state of the DOM / page after it has been completely processed. Can I do this with the web browser control?
Note: I am waiting until the document is completely loaded, so that is not the problem.