You are here

public function WebAssertTest::testElementTextEquals in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testElementTextEquals()

@covers ::elementTextEquals

File

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

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\FunctionalTests

Code

public function testElementTextEquals() : void {
  $this
    ->drupalGet('test-page');
  $this
    ->assertSession()
    ->elementTextEquals('xpath', '//h1', 'Test page');
  $this
    ->expectException(AssertionFailedError::class);
  $this
    ->expectExceptionMessage("Failed asserting that the text of the element identified by '//h1' equals 'Foo page'.");
  $this
    ->assertSession()
    ->elementTextEquals('xpath', '//h1', 'Foo page');
}