Using
ExpressionSelectingTable/tr[td//text()[contains(., 'targetString')]]
This means :
Select each tr , which is a child of any table selected by ExpressionSelectingTable , and that ( tr ) has at least one td child that has at least one text node containing the string 'targetString'
Dimitre Novatchev Jan 05 '11 at 19:40 2011-01-05 19:40
source share