Using browser.visit, I am fetching the page of a browser as shown in the documentation. According to the browser API, browser.document returns the main window's document. However, I am not sure how to dump (display) the contents of the document. Is there a method like browser.document.toString() or browser.document.text() to be able to print the contents of the document in the console.

Thanks, Sony

link|improve this question

78% accept rate
did you try browser.html()? – nash May 8 '11 at 8:39
Yes, I did. But, it prints the entire html contents, right? I thought browser encompasses all details of the page such as state, content etc. whereas the document is a subset which just stores the dom structure. Am I wrong? I am trying to print just the dom structure using browser.document as against the entire html. – sony May 8 '11 at 21:36
feedback

3 Answers

There is a browser.text(selector, context?). Selector is a CSS selector evaluated against the document body. Context is a optional second argument, the CSS selector is evaluated against the element given as the context.

You can say something like browser.text('body') to get the text in the body.

link|improve this answer
browser.text('document') does not work. I thought document is a selector of browser. I am trying to access the "dom strucuture" via browser.document. - Sony – sony May 8 '11 at 22:01
@sony browser.text('body') will select whatever text is in the body tag of a html page/document. I haven't tried it but you should be able to do browser.text('html') to select the text in the headers + body. – Tarun Chaudhry May 10 '11 at 7:51
feedback

What you want is probably:

browser.document.innerHTML 
link|improve this answer
feedback

If it's not necessarily HTML (like you find yourself pulling XML or JSON through Zombie due to complicated, valid reasons...), you can access it like this:

browser.document._childNodes[0]._nodeValue
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.