For the life of me I do not understand why I cannot grab the td text below the th.
I have tried this ('//th(contains(text(), "Text I Need Is After This")]') which does grab the actual line that it's intended to grab, but what I'm trying to grab is the text in the td/a links below that.
appending ('//th(contains(text(), "Text I Need Is After This")]/td/a') or just ('//th(contains(text(), "Text I Need Is After This")]/td') does not find any matches.
Here is the HTML
<tr class="">
<th scope="row" style="text-align:left;">Text I Need Is After This</th>
<td class="" style="">
<a href="/wiki/Queens" title="Queens">Queens</a>,
<a href="/wiki/New_York" title="New York">New York</a>,
<a href="/wiki/United_States" title="United States">United States</a>
</td>
</tr>
