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

I am writing a program to validate web pages on a remote server. It uses selenium RC to run Firefox with a battery of tests, so I can call arbitrary javascript. When there is a failure I would like to log the page's generated HTML. Now getting access to the DOM HTML is easy, But I am having real trouble finding a way to get at the source. Thanks.

I should reiterate that I am not looking for the DOM, but the original unmodified source code. As can be seen through Right click -> view page source. Specifically if <Html> <body> <table> <tr> <td> fear the table data </td> </table>

is the real HTML. Calls to document.documentElement.outerHTML || document.documentElement.innerHTML and selenium.getHTMLSource() will result in <head> </head><body> <table> <tbody><tr> <td> fear the table data </td> </tr></tbody></table> </body>

share|improve this question

3 Answers

XHR request the same page for the source, and just check document.documentElement.outerHTML || document.documentElement.innerHTML for the current state's source.

share|improve this answer
However. I am looking for the original unmodified html source code. – Mark May 20 '11 at 16:40
I said "XHR request the same page for the source". – Eli Grey May 20 '11 at 19:56
I may be (more then likely) missing something, but if the page is dynamic it won't necessarily reload the same html that caused a bug. – Mark May 23 '11 at 20:42
Then you'd want the current source, which I also told you how to get. – Eli Grey May 23 '11 at 20:44
Thanks for your patience. It's just that when I make that call on the poorly formatted html example I edited into my question, I get back a firefox DOM. For example the inserted <head> </head>, <tbody>...</tbody>, and closing </body>. This would be problematic for correctly logging the cause of bugs. What are you doing that doesn't do that? – Mark May 24 '11 at 14:31

Have you tried something as simple as

document.documentElement.innerHTML;
share|improve this answer
that gets the DOM at, least in Firefox. – Mark May 20 '11 at 14:49

Since you are also using selenium, you can use selenium.getHTMLSource(). This will return the whole source page contents.

share|improve this answer
That is what I had assumed before testing. The call actually gets an html version of the DOM probably through a document.documentElement.innerHTML; call. – Mark May 20 '11 at 14:51

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.