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
Actually, you need to look for a descendant, not a child:
//table[@name='important']/tr[descendant::interestingtag]