Return this element's children as an `ElementCollection`.
(self)
| 587 | |
| 588 | @property |
| 589 | def children(self): |
| 590 | """ |
| 591 | Return this element's children as an `ElementCollection`. |
| 592 | """ |
| 593 | return ElementCollection.wrap_dom_elements(self._dom_element.children) |
| 594 | |
| 595 | @property |
| 596 | def classes(self): |
nothing calls this directly
no test coverage detected