I have following code in my ie web page. I want text value of tag (means "ABCD:"). I am using ruby watir for that.

<fieldset>
<legend class="fieldset">ABCD:</legend>
<fieldset>

I have tried with below code, but I don't why its not working and giving error(undefined method `text' for nil:NilClass)

ie.element_by_xpath("//legend[contains(@class, 'fieldset')]/").text

Is there any other way or is there anything wrong in my code.

link|improve this question

0% accept rate
a bit larger sample of the HTML might help – Chuck van der Linden Nov 7 '11 at 19:54
feedback

1 Answer

Is that the only time the class of 'fieldset' is used on the page?

The list of supported elements shows unknown for Watir and supported for Watir-Webdriver for the legend tag.

Have you tried using Watir-Webdriver and code along these lines?

puts browser.legend(:class => 'fieldset').text

That's cleaner, easier to read, and will likely be faster. Only resort to using xpath if nothing else works

link|improve this answer
1  
Table of supported elements will get a facelift real soon. :) – Ċ½eljko Filipin Nov 8 '11 at 10:45
feedback

Your Answer

 
or
required, but never shown

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