在Selenium 2.0中,我不知道如何遍歷網頁中的HTML表格。在selenium2.0 javadoc中,我找到了兩個類「TableFinder」和「TableCellFinder」,但我找不到任何示例。如何從HTML表格的每個單元格獲取文本?
我想要做這樣的事情:
RowCount=Get how many rows are there 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);
Do something with cell_value
}
}
我怎樣才能從每個表格單元格中的文本?
它對我也有效,謝謝! – kiedysktos 2015-08-26 13:46:57