11-15-2010, 01:15 PM
(This post was last modified: 11-15-2010, 02:51 PM by KavitaPriyaCR.)
Hi
sorry Saket...As i am not able to post reply in tag...here i am replying the post in independent tag.
1. There may be multiple webedits in that screen, so you have to provide additional property.
AND/OR
2. Try the script for loop as:
sorry Saket...As i am not able to post reply in tag...here i am replying the post in independent tag.
1. There may be multiple webedits in that screen, so you have to provide additional property.
AND/OR
2. Try the script for loop as:
Code:
For x = 1 to Max
Edits(x).Set "17.50"
next
Set Desc = Description.Create()
Desc("micclass").Value = "WebEdit"
Set Edits = Browser("Repsmart Data Centre").Page("RDC Product").Frame("popupFrame_3").ChildObjects(Desc)
MsgBox "Number of Edits: " & Edits.Count
Max = Edits.Count -1
For x = 1 to Max
Edits(x).Set "17.50"
next