Saturday, 17 August 2013

How to Read All the Data from a Webtable

Set ItenCount = Browser(”…”).Page(”…”).WebTable(”…”)
RCount = ItenCount.GetROProperty(”rows”)
Ccount = ItenCount.GetROProperty(”cols”)
For i = 1 to RCount
For j = 1 to Ccount
CData = ItenCount.GetCellData(i,j)
msgbox CData

No comments:

Post a Comment