<table class="">
<tbody class>
<tr class>
<tr class>
<tr class>
<td>
<span>Series</span>
<td>CAT5</td>
The number of tr and td can be different because there are multiples tables and I needed it in a xpath format like this:
//table[@class="info-table specifications-table"]/tbody/tr/td/span[contains(text(),'Series')]/....
I tried like this but the tr order is different each time, the only constant is the value is always on the Series row in the table
//table[@class="info-table specifications-table"]/tbody/tr[8]/td[2]
Table looks like this and the Series can be on different position from top to bottom