First, welcome to the forums.
Second, please provide more information when posting about issues. We need to know things like:
What version of Ranorex are you using? (5.2.2 is current today)
What version of Windows are you using?
What technology is your system under test developed in? (Java, HTML/Web, WinForms, WPF, etc.)
What is the text of the error you are receiving?
It would also be helpful if you could post the RanoreXPath to the object that you are having issues with as well as a Ranorex Snapshot of the application under test. You can find information about creating a Ranorex Snapshot
here.
Usually when the mouse pointer moves to the top-left corner it is because the XPath points to a valid object, but the object is not actually visible on screen. You can try to make Ranorex wait for the object to become visible by adding " and @visible='true'" to the XPath attribute of the element. For example:
Code: Select all
//button[@text='OK' and @visible='true']
This will find any OK button under the parent object that has the text of 'OK' and is visible.
Shortcuts usually aren't...