I'm trying to use urllib2 to fetch webpage from a website. After I managed to log on and retrieve the page, I found out the page has some <script>.....</script> inside. How can I save the rendered the output (the complete content of the webpage, not the script)?

link|improve this question

Are you saying you'd like to save the content of the page, after any included Javascript has been run? – Matt Luongo Feb 4 at 17:42
Are you doing this for testing, screen-scraping for an application, or what? In general, with JavaScript it's the browser that creates the page content, so you need a real browser to duplicate that... – Bill Gribble Feb 4 at 17:44
@MattLuongo Yes, I'm trying to pull some of my personal message from a website which doesn't offer an API. – CyberSnoopy Feb 4 at 17:47
feedback

2 Answers

up vote 1 down vote accepted

I'd also like to mention pywebkitgtk (which I've been using a lot lately as an embedded browser), and Selenium.

link|improve this answer
Selenium with an actual browser driver is very useful, can mimic most human interactions. – CyberSnoopy Feb 4 at 20:06
feedback

Javascript can't be easily handled if you are using urllib.

What you need is a headless browser, for ex. WebKit.

A simple example can be found here.

If you don't want yourself to be limited to python, try Phantomjs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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