public function WebAssert::pageTextMatches in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::pageTextMatches()
File
- core/
tests/ Drupal/ Tests/ WebAssert.php, line 850
Class
- WebAssert
- Defines a class with methods for asserting presence of elements during tests.
Namespace
Drupal\TestsCode
public function pageTextMatches($regex) {
assert(func_num_args() === 1);
return parent::pageTextMatches($regex);
}