I\'m using Html Agility Pack to run xpath queries on a web page. I want to find the rows in a table which contain a certain interesting element. In the example below, I wa
"has a descendant named interestintag" is spelled .//interestintag in XPath, so the expression you are looking for is:
.//interestintag
//table[@name='important']/tr[.//interestingtag]