If I have an xml file like this:
<root>
<item>
<prop>something</prop>
</item>
<test>
<prop>something</prop>
</test>
<test2>
<prop>something</prop>
</test2>
</root>
I can use
xmlTree.getroot().findall("item")
to get all of the 'item' elements.
How would I get all of the 'item' OR 'test' elements? I want something like:
xmlTree.getroot().findall("item or test")
I didn't see anything like this in the examples in the documentation. Any ideas?