11-25-2008, 12:20 PM
_______________________________________________
try this to get all values from the table...
try this to get all values from the table...
Code:
NumRows = Browser(BrowserName).Page(PageName).WebTable(TableName).RowCount
NumColumns = Browser(BrowserName).Page(PageName).WebTable(TableName).ColumnCount(NumRows )
for i=1 To NumRows
For j=1 To NumColumns
print Browser(BrowserName).Page(PageName).WebTable(TableName).GetCellData(i,j )
Next
Next