You are here

public function WebAssertArgumentsTest::testElementTextContains in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php \Drupal\Tests\Core\Assert\WebAssertArgumentsTest::testElementTextContains()

@covers ::elementTextContains

File

core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php, line 422

Class

WebAssertArgumentsTest
Tests that calling WebAssert methods with extra arguments leads to errors.

Namespace

Drupal\Tests\Core\Assert

Code

public function testElementTextContains() : void {
  $this
    ->expectError(\AssertionError::class);
  $element = $this
    ->prophesize(NodeElement::class);
  $element
    ->getText()
    ->willReturn('bar');
  $this->page
    ->find(Argument::any(), Argument::any())
    ->willReturn($element
    ->reveal());
  $this->webAssert
    ->elementTextContains('xpath', '//foo', 'bar', 'Extra argument');
}