I'm trying to get the descendants from my XML which has the attribute "enabled = true"
if i try XML(dataProvider).descendants().(@enabled = "true") i get an error " A term is undefined and has no properties." which is understandable because not every node has the enabled attribute. The question is how to get all that has the "enabled" attribute and is set true.

