I am currently using Selenium 2.0, I don't know how to traverse through an HTML table on a webpage. But in Selenium2.0 Javadoc, there are two classes "TableFinder" and "TableCellFinder", but I couldn't find any examples.
I want to do something like this:
RowCount=Gets the number of rows in the html table
for each row of the table
{
column_count=Get column count
for each column
{
cell_value=get_text_from(row,col);
Actions on cell_value
}
}
How can I get the text from each of the cells in the table?