12-21-2008, 09:37 PM
Hi Arun,
Try with below code ...
The script will work fine.
Try with below code ...
Code:
Set Obj_Desc=Description.Create
Obj_Desc("html tag").value = "INPUT"
Dim allTextbox
Set allTextbox = Browser("Login").Page("Login").ChildObjects(Obj_Desc)
allTextbox_Cnt=allTextbox.count
For i=0 in (allTextbox_Cnt-1)
msgbox allTextbox(i).GetRoProperty("Attached Text")
Next
The script will work fine.