children
The command to get the children of the current element.
Syntax
Element.children() -> ElementsUsage
py.get("a").children()
---or--- # store in a variable
elements = py.get("ul").children()
---or--- # chain another command
child = py.get("ul").children().first()Arguments
Yields
Last updated