Is it possible to use Perl LWP::UserAgent to scrape HTML and rendered JavaScript source?

link|improve this question

17% accept rate
1  
possible duplicate of Is there a way to execute JavaScript in Perl? – daxim Nov 1 '11 at 8:41
feedback

1 Answer

LWP::UserAgent will let you simulate a browser within Perl, so it'll fetch things via HTTP for you (html, javascript, images, various binary files, etc...). But it won't execute the Javascript for you. That's not its job.

In real world terms, LWP::UA is a delivery truck. The fact that it's hauling kitchen equipment won't let LWP::UA cook dinner for you. It just drops the stove off at your front door.

link|improve this answer
Thanks for the explanation. Would you know how I could potentially accomplish this, seeing the executed JavaScript and parse the information? – Luke Oct 31 '11 at 18:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.