Returns all items that match the given criteria and appear after this Tag in the document.
(self, name=None, attrs={}, text=None, limit=None,
**kwargs)
| 255 | return self._findOne(self.findAllNext, name, attrs, text, **kwargs) |
| 256 | |
| 257 | def findAllNext(self, name=None, attrs={}, text=None, limit=None, |
| 258 | **kwargs): |
| 259 | """Returns all items that match the given criteria and appear |
| 260 | after this Tag in the document.""" |
| 261 | return self._findAll(name, attrs, text, limit, self.nextGenerator, |
| 262 | **kwargs) |
| 263 | |
| 264 | def findNextSibling(self, name=None, attrs={}, text=None, **kwargs): |
| 265 | """Returns the closest sibling to this Tag that matches the |