05-30-2014, 02:32 PM
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"
Code:
If Web List Works Use the Below Code.
Otherwise Create a Description Object (Ex: oDesc) and use the same in place of "Weblist"
Code:
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:=X", "html tag:=TABLE").ChildItem(r,c,"WebList", 0)
Col1.Select "XXX" or DataTable.Value("xxxx", DtlocalSheet)
Next
Next