I want to iterate through this table and need to get a text from each row like text inside td= health1, health 2 and health 3, similarly, I need text inside the state.Hoe can I do that
<table id="TableFormtable" class="datatable" summary=" Server ">
    <tbody>
        <tr>
            <th title="Sort table by Name" scope="col"></th>
            <th title="Sort table by clusterName" scope="col"></th>
            <th title="Sort table by Machine" scope="col"></th>
            <th title="Sort table by State" scope="col"></th>
            <th title="Sort table by Health" scope="col"></th>
            <th title="Sort table by port" scope="col"></th>
        </tr>
        <tr class="rowEven">
            <td id="name1" scope="row"></td>
            <td id="clusterName1"></td>
            <td id="machineName1"></td>
            <td id="state1"></td>
            <td id="health1"></td>
            <td id="port1"></td>
        </tr>
        <tr class="rowOdd">
            <td id="name2" scope="row"></td>
            <td id="clusterName2"></td>
            <td id="machineName2"></td>
            <td id="state2"></td>
            <td id="health2"></td>
            <td id="port2"></td>
        </tr>
        <tr class="rowEven">
            <td id="name3" scope="row"></td>
            <td id="clusterName3"></td>
            <td id="machineName3"></td>
            <td id="state3"></td>
            <td id="health3"></td>
            <td id="port3"></td>
        </tr>
    </tbody>
</table>
I am using
 List<WebElement> allRows = utils
                .findElements(By.xpath("//table[@id='genericTableFormtable']/tbody/tr[@id='rowEven' or @id='rowOdd']"));
after this step how can I iterate to each row and get the respective values.