function WebAssertTest::testPageTextContainsOnce

Same name in this branch
  1. 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
Same name in other branches
  1. 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
  2. 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
  3. 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\Test

Code

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.