Returns the closest sibling to this Tag that matches the given criteria and appears after this Tag in the document.
(self, name=None, attrs={}, text=None, **kwargs)
| 277 | **kwargs) |
| 278 | |
| 279 | def findNextSibling(self, name=None, attrs={}, text=None, **kwargs): |
| 280 | """Returns the closest sibling to this Tag that matches the |
| 281 | given criteria and appears after this Tag in the document.""" |
| 282 | return self._findOne(self.findNextSiblings, name, attrs, text, |
| 283 | **kwargs) |
| 284 | |
| 285 | def findNextSiblings(self, name=None, attrs={}, text=None, limit=None, |
| 286 | **kwargs): |