Returns the first item that matches the given criteria and appears after this Tag in the document.
(self, name=None, attrs={}, text=None, **kwargs)
| 265 | self.insert(len(self.contents), tag) |
| 266 | |
| 267 | def findNext(self, name=None, attrs={}, text=None, **kwargs): |
| 268 | """Returns the first item that matches the given criteria and |
| 269 | appears after this Tag in the document.""" |
| 270 | return self._findOne(self.findAllNext, name, attrs, text, **kwargs) |
| 271 | |
| 272 | def findAllNext(self, name=None, attrs={}, text=None, limit=None, |
| 273 | **kwargs): |