Forum Discussion
Ah yes, I forgot to post that:
There was an attempt to perform an action at point (621, 12) which is transparent or out of the window bounds.
Note that I am using the default click coordinates and the object appears to be visible.
I do have some slight concerns about timing with the new machine, but if that's the case, I'm confused on why hiding the indicator seems to have fixed that.
I would try using an object property rather than coordinates. That's best practice and it may also resolve the indicator issue.
- cmpenn4 years agoContributor
Sorry, I meant that I'm clicking on the default coordinates for the object, so:
testedObject.Click();- Marsha_R4 years ago
Champion Level 3
Same suggestion. Avoid using coordinates and click using some other object property, maybe Text, that is more stable than coordinates.
- cmpenn4 years agoContributor
Huh, I wasn't aware you could click on the property of an object. I thought you had to click on the object itself.
Do you have an example of how that works?