J'écris un test de concombre où je veux obtenir le HTML dans un élément.
Par exemple:
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
Quelqu'un sait-il comment faire ça?