Hi,
after you have got your collection of tables you can then use the following if you know which table, row & cell you want
this will retrieve the data from the 3rd table, 2nd Row, 15th Column
tables work from 0. the first table, row or column(cell) is always 0
that's why if you use the length attribute in a loop you will get an error as you need to deduct 1.
ie for a table of 10 columns x 5 rows.
rows.length = 5
cells.length = 10
but the index used will be
rows 0 - 4
cells 0 - 10
therefore if you tried to find rows(rows.length).innertext you would get an error. But rows(rows.length-1).innertext will be correct.
ie
Bookmarks