Forum Discussion
3 Replies
- AlexKarasCommunity Hero
Hi,
Try to either remove coordinates from the recorded .Click() events or replace them with -1 value.
- Vallalarasu_PFrequent Contributor
There are two options
Either Replace the click without coordinates
Read the Coordinates in run time and Click on the center of the object
Ob_height = Object.height
Ob_Width = Object.Width
Object.click(Ob_height /2,Ob_Width/2 )
- cunderwCommunity Hero
There is no need to manually grab the cooridnates, not specifying cooridnates or using -1, will default the center of the object.