Slices the list of nodes by $offset and $length.
public function slice(int $offset = 0, ?int $length = null) : static { return $this->createSubCrawler(\array_slice($this->nodes, $offset, $length)); }