function WebAssertTest::testPageTextContainsOnce

Same name in this branch
  1. 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testPageTextContainsOnce()
Same name in other branches
  1. 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
  2. 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testPageTextContainsOnce()
  3. 11.x core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testPageTextContainsOnce()

@covers ::pageTextContainsOnce

File

core/tests/Drupal/FunctionalTests/WebAssertTest.php, line 81

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\FunctionalTests

Code

public function testPageTextContainsOnce() : void {
    $this->drupalLogin($this->drupalCreateUser());
    // Visit a Drupal page that requires login.
    $this->drupalGet('test-page');
    $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.