Hint: Make sure that you have captured the right WebTable.
Choose WebTable which is closed to the WebElement layer in your spy view, then operate it. Otherwise you may probably get an unexpected WebTable object and could only get the first data, for the WebTable in the OR just had one row indeed.
n=browser().page().webtable().RowCount
for i=1 to n
value=brwoser().page().webtable().getcelldata(n,1)
next
这样先取到webtable的行数,然后,再循环取得所有行,某一列的值。我取得是第一列得值。