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?