File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ getByRole(
29
29
expanded?: boolean ,
30
30
queryFallbacks?: boolean ,
31
31
level?: number ,
32
+ disabled?: boolean ,
32
33
value?: {
33
34
min?: number ,
34
35
max?: number ,
@@ -444,3 +445,32 @@ You can query a specific element like this
444
445
``` js
445
446
getByRole (' alertdialog' , {description: ' Your session is about to expire' })
446
447
```
448
+
449
+ ### ` disabled `
450
+
451
+ You can filter the returned elements by their disabled state by setting
452
+ ` disabled: true ` , ` disabled: false ` , ` aria-disabled: true ` or
453
+ ` aria-disabled: false ` .
454
+
455
+ For example in
456
+
457
+ ``` html
458
+ <body >
459
+ <button disabled >disabled</button >
460
+ <button aria-disabled =" true" >aria-disabled</button >
461
+ <button >normal</button >
462
+ </body >
463
+ ```
464
+
465
+ you can query a specific element(s) like this
466
+
467
+ ``` js
468
+ getAllByRole (' button' , {disabled: true })
469
+ // [
470
+ // <button disabled>disabled</button>,
471
+ // <button aria-disabled="true">aria-disabled</button>
472
+ // ]
473
+
474
+ getByRole (' button' , {disabled: false })
475
+ // <button>normal</button>
476
+ ```
You can’t perform that action at this time.
0 commit comments