I'm trying to access a field by the display name that is a link, something like this:

<a class="node" href="javascript: MCMenu(7);">MÓVEL</a>

and trying to access the item by doing this:

t= $browser.link(:text => "MÓVEL").exists?

t.click

the error is:

unable to locate element, using {:text=>"M\303\223VEL", :tag_name=>"a"} (Watir::Exception::UnknownObjectException)

link|improve this question

What version of Ruby and Watir-WebDriver do you use? I just checked and it works fine for me. – p0deje Feb 9 at 11:36
Have you tried using the other set of quotes? I.e. 'movel' instead of "movel" ? – anonygoose Feb 9 at 11:40
I'm using watir-webdriver (0.5.2, 0.4.1, 0.3.9) and ruby ruby 1.8.7 – macwadu Feb 9 at 11:42
with the change of the quotes didnt work too – macwadu Feb 9 at 11:49
i have uninstaled the 0.41 and 0.39 now i only have the 0.52 but it does the same – macwadu Feb 9 at 12:48
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

Try it with a regex like this:

t = $browser.link(:text => /M.VEL/).exists?
link|improve this answer
i updated the system and it works now. Tanks – macwadu Feb 14 at 15:05
feedback

Your Answer

 
or
required, but never shown

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