(self, xpath)
| 60 | return self._xpath(self.node, xpath) |
| 61 | |
| 62 | def doc_xpath(self, xpath): |
| 63 | root = self.node.getroottree().getroot() |
| 64 | return self._xpath(root, xpath) |
| 65 | |
| 66 | def attribute(self, attribute, namespace=None, node=None): |
| 67 | if node is None: |
no test coverage detected