If i use this
WebClient client = new WebClient();
String htmlCode = client.DownloadString("http://test.net");
I can use the flexibility package to scan html and get most of the tags that I need, but lack the html that is displayed in javascript.
My question is how to get the final rendered page source using C #. Is there anything more for WebClient to get the final rendered source after running javascript?
source
share