Finds nodes matching the given selector starting from the current matched nodes, if any, or from the root
string $selector Selector:
$this
Selector\Exception
public function find($selector) { $parser = new Selector\Parser($selector, $this->options); $selector = $parser->parse(); $this->matches = $selector->exec($this->matches); return $this; }