You can use the Description.Create & ChildObjects. For example:
that is you build an array [ -> browobj ] in which each element is a browser (and with Description.Create you can better specify the properties)
Code:
Set brow = Description.Create()
brow("application version").value="internet explorer 6"
Set browobj = desktop.ChildObjects(brow)
NoOfChildObjs = browobj.Count
msgbox NoOfChildObjs
For Counter=0 to NoOfChildObjs-1
msgbox browobj(counter).getroproperty("name")
Next
browobj(0).closethat is you build an array [ -> browobj ] in which each element is a browser (and with Description.Create you can better specify the properties)

