I want to get the HTML source of a webpage. I am aware I could get it using HttpRequest class (.NET Framework), but unfortunately, the HTML is not yet "fully formed" since the HTML I want would require clicking on a link/button at the webpage, which would then manipulate the HTML (and that's when I want to get the HTML source).
I've tried using the WebBrowser class/control (.NET Framework). Even though this might allow me to get the manipulated HTML source, the webpage I'm trying to request will have pop-ups, and I can't have pop-ups. Is there a way to do this?