alternate to Click()

Technology specific object identification, supported applications, web technologies, and 3rd party controls.
omayer
Posts: 458
Joined: Thu Oct 28, 2010 6:14 pm

alternate to Click()

Post by omayer » Fri Sep 13, 2013 2:08 pm

how to click on a ATag w/out using click() or perform.click() or double.click() since none of them gives full gurantee that link got clicked, sometime click gets missed even giving a delay, thank you in advance
-tipu
Tipu

mdgairaud
Posts: 87
Joined: Sun Aug 05, 2012 11:59 am
Location: Bilbao, Spain

Re: alternate to Click()

Post by mdgairaud » Mon Sep 16, 2013 8:53 am

hi,

try to move the mouse cursor over the ATag item and then perform de Click action. A delay between two actions fits well.

Code: Select all

Mouse.MoveTo(Atag_Item);
Ranorex.Delay.Duration(500);
Mouse.Click();
That works fine for me


regards,
Mateo.

omayer
Posts: 458
Joined: Thu Oct 28, 2010 6:14 pm

Re: alternate to Click()

Post by omayer » Mon Sep 16, 2013 3:03 pm

Thank you Mateo, it worked
Tipu