vote up 1 vote down star
1

Is there a command line utility (preferrably for Linux) that can output the resulting HTML after any JavaScript execution?

Since many web sites use Javascript to modify the output substantially, it is sometimes not sufficient to use an HTML parser to read data from a web page. A command line utility or library that enables you to see the resulting HTML, after any initial JavaScript has been executed, could help with this.

flag

3 Answers

vote up 1 vote down check

If you are interested in catching the output of webpages running JavaScript, see HtmlUnit, a "GUI-Less browser for Java programs". Otherwise get a JS interpreter – Rhino, Spidermonkey, etc. – and a corresponding DOM environment as Djko suggested.

link|flag
vote up -2 vote down

I recommend using the Firebug plugin in Firefox. They have all the tools necessary at the bottom of the screen when you enable the fire bug utility!

I've used this tool to see what HTML is generated by php. The beautiful part is it will let you edit the client html so play around with the look and feel without changing an of your code. All you have to do is edit it in the tool and your browser will allow you to preview the change.

You can get the free download at: http://getfirebug.com/

link|flag
vote up 2 vote down

this might help you Bringing browser to the server,Crosscheck

link|flag

Your Answer

Get an OpenID
or

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