Forum Discussion
Marsha_R
Champion Level 3
7 years agoTry setting a breakpoint on the test line before the one that gets the error. Let the test pause there so you can click through the test steps manually and see what's happening. That may give you a clue.
najes
7 years agoOccasional Contributor
Finally figured the workaround for this.
So i used the FindChild method instead of the mapping (still not sure why the mapping didn't work tho):
Aliases.MainWindow.FindChild(["WndClass","ControlId"],["Edit",1745],6,true).SetText(100);
Thank you for the replies!