I am trying to load the webpage, http://www.artstation.com/artist/nicotine, so I can scrub the page, unfortunately the page seems to be generated via code so the tags that I am looking for aren't available.
Loading it with the following isn't working, as it only loads the source javascript, not the content it generates:
HtmlWeb htmlWeb = new HtmlWeb();
imagepage = htmlWeb.Load(http://www.artstation.com/artist/nicotine);
How can I load the page the page that is shown in the browser so that I can scrub it for the tags?