I need a way using NodeJS to make a request to a url, run some Javascript on that page, and return the HTML generated after the Javascript executes. How would I do this?
For example:
GET http://SiteToRequest.com
Run clickThis(); clickThat(); setAttribute();
on http://SiteToRequest.com
And then return
the HTML scraped after the JS has run