public function WebAssertArgumentsTest::testElementAttributeNotContains in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php \Drupal\Tests\Core\Assert\WebAssertArgumentsTest::testElementAttributeNotContains()
@covers ::elementAttributeNotContains
File
- core/
tests/ Drupal/ Tests/ Core/ Assert/ WebAssertArgumentsTest.php, line 489
Class
- WebAssertArgumentsTest
- Tests that calling WebAssert methods with extra arguments leads to errors.
Namespace
Drupal\Tests\Core\AssertCode
public function testElementAttributeNotContains() : 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
->elementAttributeNotContains('xpath', '//foo', 'bar', 'qux', 'Extra argument');
}