function WebAssert::pageTextContains
Checks that current page contains text.
Parameters
string $text:
Return value
void
Throws
File
-
vendor/
behat/ mink/ src/ WebAssert.php, line 286
Class
- WebAssert
- Mink web assertions tool.
Namespace
Behat\MinkCode
public function pageTextContains(string $text) {
$actual = $this->session
->getPage()
->getText();
$actual = preg_replace('/\\s+/u', ' ', $actual) ?? $actual;
$regex = '/' . preg_quote($text, '/') . '/ui';
$message = sprintf('The text "%s" was not found anywhere in the text of the current page.', $text);
$this->assertResponseText((bool) preg_match($regex, $actual), $message);
}