I’m writing a cucumber test where I want to get the HTML in an element.

For example:

within 'table' do
  # this works
  find('//tr[2]//td[7]').text.should == "these are the comments" 

  # I want something like this (there is no "html" method)
  find('//tr[2]//td[7]').html.should == "these are the <b>comments</b>" 
end

Anyone know how to do this?

link|improve this question

66% accept rate
feedback

3 Answers

This post is old, but I think I found a way if you still need this.

To access the Nokogiri node from the Capybara element (using Capybara 1.0.0beta1, Nokogiri 1.4.4) try this:

elem = find('//tr[2]//td[10]')
node = elem.native
#This will give you a Nokogiri XML element

node.children[1].attributes["href"].value.should == "these are the <b>comments</b>"

The last part may vary for you, but you should be able to find the HTML somewhere in that node variable

link|improve this answer
feedback

try calling find('//tr[2]//td[10]').node on it to get at the actual nokogiri object

link|improve this answer
feedback

Well, Capybara uses Nokogiri to parse, so this page might be appropriate:

http://nokogiri.org/Nokogiri/XML/Node.html

I believe content is the method you are looking for.

link|improve this answer
There is no comment method... tried to do this: find('//tr[2]//td[10]').content – Jon Kruger Nov 5 '10 at 12:32
Can you post your actual step? It would be helpful to see what you are doing here. I've done page.find(...) and referred to the Nokogiri documentation to parse the response. Maybe I was just lucky... Note that I said page.find. I think Capybara provides the page object where Webrat provided the response object. – Steve Ross Nov 5 '10 at 17:28
The contents of the step are in the original post. – Jon Kruger Nov 12 '10 at 14:38
inner_html() should give you everything within a given node. inner_text() should give you all the text inside the node. – Steve Ross Nov 12 '10 at 18:57
feedback

Your Answer

 
or
required, but never shown

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