playwright/docs/src
Dmitry Gozman 3f904056ee
api: add isVisible, isHidden, isEnabled, isDisabled and isEditable (#4915)
These methods are useful for verification in tests, e.g.
```js
expect(await page.isEnabled(':text("Remove All")')).toBe(false);
await page.click(':text("Add Item")');
expect(await page.isVisible('.item:text("new item")')).toBe(true);
expect(await page.isEnabled(':text("Remove All")')).toBe(true);
```
2021-01-08 12:27:54 -08:00
..
api api: add isVisible, isHidden, isEnabled, isDisabled and isEditable (#4915) 2021-01-08 12:27:54 -08:00
actionability.md api: add isVisible, isHidden, isEnabled, isDisabled and isEditable (#4915) 2021-01-08 12:27:54 -08:00
assertions.md chore: add some Python language snippets (#4933) 2021-01-08 08:39:33 -08:00
auth.md docs: update authentication guide to use storageState() api (#4948) 2021-01-08 12:24:10 -08:00
ci.md docs: move links into playwright.dev (#4947) 2021-01-08 09:12:54 -08:00
cli.md docs: add save/load storage to cli docs (#4899) 2021-01-05 13:40:42 -08:00
core-concepts.md chore: add some Python language snippets (#4933) 2021-01-08 08:39:33 -08:00
debug.md chore: add some Python language snippets (#4933) 2021-01-08 08:39:33 -08:00
docker.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
emulation.md chore: add some Python language snippets (#4933) 2021-01-08 08:39:33 -08:00
extensibility.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
input.md chore: add some Python language snippets (#4933) 2021-01-08 08:39:33 -08:00
installation.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
intro.md docs: move links into playwright.dev (#4947) 2021-01-08 09:12:54 -08:00
languages.md docs: add Java to the list of language ports (#4940) 2021-01-08 06:02:54 -08:00
mobile.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
multi-pages.md docs: make all links relative (#4926) 2021-01-06 20:02:51 -08:00
navigations.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
network.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
pom.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
selectors.md docs: brush up selector docs (#4939) 2021-01-08 10:59:24 -08:00
showcase.md docs: Added Crystal port to showcase (#4945) 2021-01-08 06:04:39 -08:00
test-runners.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
troubleshooting.md doc: further align docs w/ playwright.dev (#4866) 2021-01-03 08:47:29 -08:00
verification.md docs: make all links relative (#4926) 2021-01-06 20:02:51 -08:00
why-playwright.md docs: make all links relative (#4926) 2021-01-06 20:02:51 -08:00