Hi,
I got run time error on line msgbox AllCHkBoxes(i).getROProperty("all items".
Would you please help ? This is the scrip to count number weblist on the app and output all items on every weblist.
Thanks,
I got run time error on line msgbox AllCHkBoxes(i).getROProperty("all items".
Would you please help ? This is the scrip to count number weblist on the app and output all items on every weblist.
Code:
Browser("....").Page("........").WebElement("......").Click
' create description object"
Set obj_ChkDesc = Description.Create( )
obj_ChkDesc("micclass").value = "WebList"
Set AllChkBoxes = Browser("....").Page("....").ChildObjects(obj_ChkDesc)
msgbox AllChkBoxes.count
For i=0 to AllChkBoxes.count -1
msgbox AllChkBoxes(i).getROProperty("all items")
Next
Thanks,