I am trying to select <BBB> elements that have at least two more elements of the same type in their descendants at different depths. I found this possible with:
//BBB//BBB//BBB
but if I want to change the depth of my request, I have to write:
//BBB//BBB//BBB//BBB or //BBB//BBB
Is it possible to specify the depth of my request with a parameter?
source share