04-09-2013, 09:45 AM
Use this code to select all check boxes in a page.
You can customize the above code to select all or few checkboxes as you need.
Code:
Set myObj=Description.Create
myObj("micclass").value="WebCheckBox"
Set allObjs=Browser("...").Page("....").ChildObjects(myObj)
For i=0 to allObjs.count
allObjs(i).Set "ON"
Next