What XPATH query could i use to get the values from the 1st and 3rd tag for each row in a html table.
The XPATH query i use is /table/tr/td[1]|td[3]. This only returns the values in the first tag for each row in a table.
EXAMPLE I would expect to get the values bob,19,jane,11,cameron and 32 from the below table. But am only getting bob,jane,cameron.
<table>
<tr><td>Bob</td><td>Male</td><td>19</td></tr>
<tr><td>Jane</td><td>Feale</td><td>11</td></tr>
<tr><td>Cameron</td><td>Male</td><td>32</td></tr>
</table>