I try to match ancestor-or-self of any element containing certain text string:
In step 1 matching of elements containing text works: //*[contains(text(),"ABC")]
.
But I struggle with the syntax of adding an ancestor. I tried //*ancestor-or-self::[contains(text(),"ABC")]
and //*[contains(text(),"ABC")]/ancestor-or-self
without success.
What is the correct syntax for this?
The code and string I want match can look like:
<p><strong>Vertreten durch:</strong><br>Max Mustermann</p>
So I look for the string Vertreten durch
to catch the parent element <p>...</p>
Don't try to process text nodes; use the string value of elements instead.
If the string value of an element E contains the substring
Vertreten durch:
, then the string value of all ancestors of E also contains this substring. So I think you simply needIf that doesn't answer the question, then the question needs to be clearer. An example would help.