mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 06:02:57 +03:00
docs: AriaRole is enum (#17918)
This commit is contained in:
parent
3da72235e2
commit
946994ca92
@ -21,7 +21,7 @@ page.getByLabel("User Name").fill("John");
|
||||
|
||||
page.getByLabel("Password").fill("secret-password");
|
||||
|
||||
page.getByRole("button", new Page.GetByRoleOptions().setName("Sign in")).click();
|
||||
page.getByRole(AriaRole.BUTTON, new Page.GetByRoleOptions().setName("Sign in")).click();
|
||||
|
||||
assertThat(page.getByText("Welcome, John!")).isVisible();
|
||||
```
|
||||
@ -37,7 +37,7 @@ All the same methods are also available on [Locator], [FrameLocator] and [Frame]
|
||||
- [`method: LocatorAssertions.toHaveAttribute`] with an empty value does not match missing attribute anymore. For example, the following snippet will succeed when `button` **does not** have a `disabled` attribute.
|
||||
|
||||
```js
|
||||
assertThat(page.getByRole("button")).hasAttribute("disabled", "");
|
||||
assertThat(page.getByRole(AriaRole.BUTTON)).hasAttribute("disabled", "");
|
||||
```
|
||||
|
||||
### Browser Versions
|
||||
|
Loading…
Reference in New Issue
Block a user