diff --git a/docs/queries/byrole.mdx b/docs/queries/byrole.mdx index 167ed55ed..688aa23a2 100644 --- a/docs/queries/byrole.mdx +++ b/docs/queries/byrole.mdx @@ -29,6 +29,7 @@ getByRole( expanded?: boolean, queryFallbacks?: boolean, level?: number, + disabled?: boolean, value?: { min?: number, max?: number, @@ -444,3 +445,32 @@ You can query a specific element like this ```js getByRole('alertdialog', {description: 'Your session is about to expire'}) ``` + +### `disabled` + +You can filter the returned elements by their disabled state by setting +`disabled: true`, `disabled: false`, `aria-disabled: true` or +`aria-disabled: false`. + +For example in + +```html +
+ + + + +``` + +you can query a specific element(s) like this + +```js +getAllByRole('button', {disabled: true}) +// [ +// , +// +// ] + +getByRole('button', {disabled: false}) +// +```