How do I match all child nodes containing text recursively.
If I have a tree like
table
tr
td
"hello"
td
b
"hi"
tr
td
"salud"
td
em
"bonjour"
How do I match every single string within the table node with xpath? Something like "//table/*/text()"?