Crawler $crawler:
Overrides Constraint::matches
protected function matches($crawler) : bool { $crawler = $crawler->filter($this->selector); if (!\count($crawler)) { return false; } return $this->expectedText === trim($crawler->text(null, true)); }