I want to select elements based on an a range of attribute values. I have this without the 'or' functionality:
elem = root.iterfind('.//container/image/[name="foo"]..')
I would like something in the line of:
elem = root.iterfind('.//container/image/[name="foo" OR name="bar"]..')
How can this be acheived?