Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering what's the best way to save all the files that are retrieved when Selenium visits a site. In other words, when Selenium visits http://www.google.com I want to save the HTML, JavaScript (including scripts referenced in src tags), images, and potentially content contained in iframes. How can this be done?

I know getHTMLSource() will return the HTML content in the body of the main frame, but how can this be extended to download the complete set of files necessary to render that page again. Thanks in advance!

share|improve this question

2 Answers

Selenium isn't the designed for this, you could either:

  1. Use getHtmlSource and parse the resulting HTML for references to external files, which you can then download and store outside of Selenium.
  2. Use something other than Selenium to download and store an offline version of a website - I'm sure there are plenty of tools that could do this if you do a search. For example WGet can perform a recursive download (http://en.wikipedia.org/wiki/Wget#Recursive_download)

Is there any reason you want to use Selenium? Is this part of your testing strategy or are you just wanting to find a tool that will create an offline copy of a page?

share|improve this answer
The reason why we want to use Selenium is because it parses JavaScript which is essential to reconstruct an entire page (including ad traffic). – Rick Jun 17 '10 at 21:58

A bit late in the day to reply. However, this can be useful at times. For instance, lets say that some web page outputs data using javascript. But you'd like to use a tool such as selenium to save the resulting text or HTML and want the static text or html content instead of the HTML source

I think this should be possible in Selenium using StoreBodyText (for storing text in a variable) and then figuring out a way to write it to a text file

Any ideas please? I am very new to Selenium.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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