Forum Discussion
have you mapped your treeview ?
then, either you use the index of your treeview node
treeviewmappedname.clickitem(3); (for example)
or you use the text value of the node
treeviewmappedname.clickitem("|node 1|node 2| etc etc");
I think your referring to Object Mapping. I had done object mapping in the project properties.
Thank You
- m_essaid10 years agoValued Contributor
Hi,
ok you have done an object mapping but it seems that you don't handle the object via the mapping.
am I wrong ?
- benson10 years agoOccasional Contributor
Can you explain little more how to handle the object via the mapping?
- m_essaid10 years agoValued Contributor
- show the object you want act on,
- use the keyword test recorder or the object spy. with the object spy, highlight your object, then rught click on the properties and choose "map the object".
- then use the mapped name and any property or method you want
for example : Aliases.MyExe.MyPanel.MyButton.Click()