I have looked through the examples on these pages

http://watir.com/examples/ http://wiki.openqa.org/display/WTR/Examples

I still don't see a simple example of getting html of a page.

browser = Watir::Browser.new
browser.goto 'mysite.com'

I have tried

puts browser.text

It seems not working.

Thanks

link|improve this question

I am curious as to why you might need the entire html for the page. I ask because a lot of times this is an indication that someone has an rather round-about idea in their head about how to address some testing challenge, and if we know more about what you are trying to do, we might be able to show you an easier more direct way such as getting a smaller portion of the HTML for the thing you are interested in, or learning to use the developer tools for your favorite browser. – Chuck van der Linden Feb 16 at 18:55
I 'd like to use nokogiri to parse the html :) – icn Feb 16 at 19:29
ok cool, so lets 'pop the why stack' one more time. Why do you want to parse the html with nokogiri? – Chuck van der Linden Feb 16 at 19:31
I believe there are cool paring technologies with Watir. But i know nokogiri better (a little bit ). – icn Feb 16 at 19:41
I'll grant that, but it doesn't answer the question, so lets pop the why stack one more time. Why do you want to parse the html? – Chuck van der Linden Feb 17 at 19:21
show 6 more comments
feedback

1 Answer

up vote 6 down vote accepted

This should do it:

puts browser.html
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.