Hi,
Use GetTOProperties() to retrieve the collection of Property values of Test Object in Obj. Repo and post them into Excel.
Refer the below example:
Use GetTOProperties() to retrieve the collection of Property values of Test Object in Obj. Repo and post them into Excel.
Refer the below example:
Code:
Set LinkProp=Browser("Abc").Page("Abc").Link("test").GetTOProperties()
For i=0 to LinkProp.count-1
msgbox LinkProp(i) ' post this value into Excel
Next