spy it and check which is the row number, column number for the objects you want to perform
Or use
and see where it highlights to make sure the row,col numbers used are correct.
And if there are many such fields to be set you can use a loop to iterate over rows and columns using
By the way if it is throwing error in that line,either the row/col numbers are not correct or the object is not webedit but something else, check it!
Or use
Code:
"Browser("").Page("").WebTable("WebTable").ChildItem(1,1,"WebEdit",0).Highlight
And if there are many such fields to be set you can use a loop to iterate over rows and columns using
Code:
Browser("").Page("").WebTable("WebTable").Rowcount
Browser("").Page("").WebTable("WebTable").Columncount (row)[hr]