public function WebAssertArgumentsTest::testElementAttributeContains in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php \Drupal\Tests\Core\Assert\WebAssertArgumentsTest::testElementAttributeContains()
@covers ::elementAttributeContains
File
- core/
tests/ Drupal/ Tests/ Core/ Assert/ WebAssertArgumentsTest.php, line 477
Class
- WebAssertArgumentsTest
- Tests that calling WebAssert methods with extra arguments leads to errors.
Namespace
Drupal\Tests\Core\AssertCode
public function testElementAttributeContains() : void {
$this
->expectError(\AssertionError::class);
$element = $this
->prophesize(NodeElement::class);
$element
->hasAttribute('bar')
->willReturn(TRUE);
$element
->getAttribute('bar')
->willReturn('baz');
$this->page
->find(Argument::any(), Argument::any())
->willReturn($element
->reveal());
$this->webAssert
->elementAttributeContains('xpath', '//foo', 'bar', 'baz', 'Extra argument');
}