stevol Wrote:You can use the Description.Create & ChildObjects. For example:
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).close
that is you build an array [ -> browobj ] in which each element is a browser (and with Description.Create you can better specify the properties)
Thanks Stevol,
I will get that no. of browsers opened and their names by using description.create,
Can I close particular browser without using description.create,

