I have a page that's loading another page in an iframe. The page being called does some stuff dynamically as it's called from my site, so I can't really just call it directly, and even if I could it'd be inefficient to call the same page and run that same dynamic code twice.
So what I'd like to do is once my page is done loading, scrape itself, parsing for some certain unique things, and then handle the parsed results. I know how to parse and handle the results of the parsing, however I'm not quite clear on how to do the self-scraping.
Anyone have any suggestions?
TiA