I understand that the Object Spy point and fix method does not have everything mapped. However, it apparently can potentially provide that.
In my example, the recorded values are:
Aliases.topsSchedule1.fmAPPSelectResource.sbFltNew.Click(27, 18);
Aliases.topsSchedule1.fmAPPSelectResource.pnTool.pnNew.PopupMenu.Click("Equipment / Service");
If I try to use the Object Spy Point and Fix to get the full object path, I get only:
Sys.Process("topsSchedule").Window("#32768", "", 1)
I can use the Object Spy to get the fullname value of the alias object Aliases.topsSchedule1.fmAPPSelectResource and replace that in my recorded script. How can I resolve the rest of the alias path pnTool.pnNew.PopupMenu, because the statement
Sys.Process("topsSchedule").Window("#32768", "", 1).Click("Equipment / Service");
fails in replay?