function WebAssertTest::testPageTextContainsOnce
Same name in this branch
- 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
Same name in other branches
- 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
- 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
- 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testPageTextContainsOnce()
@covers ::pageTextContainsOnce
File
-
core/
tests/ Drupal/ Tests/ Core/ Test/ WebAssertTest.php, line 112
Class
- WebAssertTest
- Tests WebAssert functionality.
Namespace
Drupal\Tests\Core\TestCode
public function testPageTextContainsOnce() : void {
$this->visit('', 'Test page text. <a href="#">Foo</a>');
$this->assertSession()
->pageTextContainsOnce('Test page text.');
$this->expectException(ResponseTextException::class);
$this->expectExceptionMessage("Failed asserting that the page matches the pattern '/does\\-not\\-exist/ui' 1 time(s), 0 found.");
$this->assertSession()
->pageTextContainsOnce('does-not-exist');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.