Is there a method I can grab parent/grandparent nodes? The examples I have found appear to use only xpath statements to select nodes. Some of my failed attempts:
/table/tr/td/b/font[self::text()="Nohup Files"]
/table/descendant::font[self::text()="Nohup Files"]
<table>
<tr>
<td><b><font>Nohup Files</font></b></td>
</tr>
</table>