Modified :
I hope your criteria is only to fill the edit boxes from 6th to 10th.
UrsVinod : There could be 30 edit boxes, so there is no need to loop through all of them and set the same value. Just the required ones only.
Code:
Set oEdit = Description.Create()
oEdit("micclass").value = "WebEdit"
set Childobj = Browser("").page("").ChildObjects(oEdit)
For I = 6 to 10
Childobj(I).Set "Test value"
NextI hope your criteria is only to fill the edit boxes from 6th to 10th.
UrsVinod : There could be 30 edit boxes, so there is no need to loop through all of them and set the same value. Just the required ones only.
Basanth
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.

