public functionresponseMatches(string $regex) {
$actual = $this->session
->getPage()
->getContent();
$message = sprintf('The pattern %s was not found anywhere in the HTML response of the page.', $regex);
$this->assert((bool) preg_match($regex, $actual), $message);
}