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)
| 270 | return self._findOne(self.findAllNext, name, attrs, text, **kwargs) |
| 271 | |
| 272 | def findAllNext(self, name=None, attrs={}, text=None, limit=None, |
| 273 | **kwargs): |
| 274 | """Returns all items that match the given criteria and appear |
| 275 | after this Tag in the document.""" |
| 276 | return self._findAll(name, attrs, text, limit, self.nextGenerator, |
| 277 | **kwargs) |
| 278 | |
| 279 | def findNextSibling(self, name=None, attrs={}, text=None, **kwargs): |
| 280 | """Returns the closest sibling to this Tag that matches the |