
Here I added an object ggogle search button. The below code will get the test object properties.
Dim TOPropList
Dim TOPropCount
Dim PropCount
Dim TOPropName
Dim TOPropValue
'Get TO Properties Collection for Google Search button
set TOPropList=Browser("Google").Page("Google").WebButton("Google Search").GetTOProperties
'Get TO Properties count
TOPropCount=TOPropList.count
For PropCount=0 to TOPropCount-1
TOPropName=TOPropList(PropCount).name
TOPropValue=TOPropList(PropCount).value
print TOPropName&":="&TOPropValue
Next
Very useful, Thanks.
ReplyDelete