Find all matching subelements by tag name or path. *path* is a string having either an element tag or an XPath, *namespaces* is an optional mapping from namespace prefix to full name. Return an iterable yielding all matching elements in document order.
(self, path, namespaces=None)
| 310 | return ElementPath.findall(self, path, namespaces) |
| 311 | |
| 312 | def iterfind(self, path, namespaces=None): |
| 313 | """Find all matching subelements by tag name or path. |
| 314 | |
| 315 | *path* is a string having either an element tag or an XPath, |
| 316 | *namespaces* is an optional mapping from namespace prefix to full name. |
| 317 | |
| 318 | Return an iterable yielding all matching elements in document order. |
| 319 | |
| 320 | """ |
| 321 | return ElementPath.iterfind(self, path, namespaces) |
| 322 | |
| 323 | def clear(self): |
| 324 | """Reset element. |
no outgoing calls