Is there a way to query what objects are defined in the repository? (I want to verify that every object in the repository exists in the page.)
Specifically, I'd like to do something like this:
Is there a getObjectList(...) function?
Specifically, I'd like to do something like this:
Code:
Set WebEditArray = Browser("MyBrowser").Page("MyPage").getObjectList("WebEdit")
ForEach we in WebEditArray
if not Browser("MyBrowser").Page("MyPage").WebEdit(we).Exist(1) then
Print "Missing WebEdit " & we
End if
Next
Is there a getObjectList(...) function?