I have the following table layout in HTML (which changes accordingly):
<table class="other-table-style">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>
<tr>
<td align="center" width="30%">Joe</td>
<td align="center" width="30%">Bloggs</td>
<td align="center" width="40%">28</td>
</tr>
<tr>
<td align="center" width="30%">John</td>
<td align="center" width="30%">Doe</td>
<td align="center" width="40%">30</td>
</tr>
</table>
I want to be able to iterate through this using Selenium 2.0 WebDriver, but I have not been able to find any good examples.
Any help would be greatly appreciated.
find_elements_by*()methods. – J.F. Sebastian Aug 21 '12 at 15:51