Hi Charles,

I face this kind of situation almost everyday at work. There are a few 
things that you can try,

1. Before you click on this link which is currently not visible, try to 
give the reference of a parent element which is currently visible. 
@driver.#parent element#.link(:text=>'123').click

[email protected](:text=>'123').fire_event(onmousehover)
   @driver.link(:text=>'123').click

3. The crude method for locating the elements

for i in [email protected]
   if @driver.link(:index=>i).text=="123"
     @driver.link(:index=>i).click
      break
    end
end   

-- 
-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

[email protected]
http://groups.google.com/group/watir-general
[email protected]

--- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to