How can I locate an element just by specifying the text property, whether its a link or a button or something else.

In jquery, we can write:

$('*').filter(function(){return $(this).text()=="some text";});

How can I achieve the same goal in Watir?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If you do not know element type, but you know it's attribute (in your case, text):

browser.element(:text => "some text")
link|improve this answer
This works in Watir-Webdriver also, correct? – Chuck van der Linden Dec 21 '11 at 17:28
@ChuckvanderLinden: I think it works both with watir and watir-webdriver gems. – Željko Filipin Dec 22 '11 at 9:04
feedback

Your Answer

 
or
required, but never shown

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