05-30-2014, 11:14 AM
Try this Below code, and confirm whether it worked or not?
If Web List Works Use the Below Code.
Otherwise Create a Description Object (Ex: oDesc) and use the same in place of "Weblist"
If Web List Works Use the Below Code.
Otherwise Create a Description Object (Ex: oDesc) and use the same in place of "Weblist"
Code:
Set temptable = Browser("Browser").Page("page").WebTable("class:=X", "html tag:=TABLE")
For r = 2 to temptable.RowCount
For c = 2 to temptable.ColumnCount(r)
Set Col1 = Browser("Browser").Page("Page").WebTable("class:=griddata", "html tag:=TABLE").ChildItem(r,c,"WebList", 0)
Col1.Select "XXX" or DataTable.Value("WarrAMC", DtlocalSheet)
Next
Next