is there a way to fetch a webpage with HTTPWebRequest and then execute all the javascriptcode that was on the page along with ajax calls and save the result to a string?
I want to parse a website where some images are generated via js code and the images aren’t on the webpage before the js script has run.
Now I searched the web for a solution to this but all I found were answers like this isn’t possible, use the webbrowser instead which is not an option for me.
Greetings
You could do this with the C++ http system which gives you a lot of control over the pieces of data that are receievd, but I guess that’s not really an answer so…
Why not try putting webkit into your app, and running off the events from it. It has several events that can notify you when downloads are started and finished.