Skip to content

Commit 131983e

Browse files
authored
[11.x] Add documentation for dusk.md/assertAttributeMissing (#10102)
* Update dusk.md Update documentation of assertAttributeMissing and assertAttributeDoesntContain * Update dusk.md
1 parent 81ea184 commit 131983e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dusk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,6 +1227,7 @@ Dusk provides a variety of assertions that you may make against your application
12271227
[assertValue](#assert-value)
12281228
[assertValueIsNot](#assert-value-is-not)
12291229
[assertAttribute](#assert-attribute)
1230+
[assertAttributeMissing](#assert-attribute-missing)
12301231
[assertAttributeContains](#assert-attribute-contains)
12311232
[assertAttributeDoesntContain](#assert-attribute-doesnt-contain)
12321233
[assertAriaAttribute](#assert-aria-attribute)
@@ -1630,6 +1631,14 @@ Assert that the element matching the given selector has the given value in the p
16301631

16311632
$browser->assertAttribute($selector, $attribute, $value);
16321633

1634+
<a name="assert-attribute-missing"></a>
1635+
#### assertAttributeMissing
1636+
1637+
Assert that the element matching the given selector is missing the provided attribute:
1638+
1639+
$browser->assertAttributeMissing($selector, $attribute);
1640+
1641+
16331642
<a name="assert-attribute-contains"></a>
16341643
#### assertAttributeContains
16351644

0 commit comments

Comments
 (0)