Arguments
- Name: i, Type: int
- specified index
Source
def select_nth_child(self, i):
return self._nodes.select_nth_child(i)
[internal] returns elements that are specified index children of their parent.
def select_nth_child(self, i):
return self._nodes.select_nth_child(i)