playwright/docs
Dmitry Gozman 5a2cfdbd47
api: add isChecked method (#4953)
This adds `{Page,Frame}.isChecked(selector)` and `ElementHandle.isChecked()` methods.

Useful to do assertions in tests:
```js
await page.click('text="Add TODO"');
expect(await page.isChecked('.item-done')).toBe(false);
```
2021-01-08 17:36:17 -08:00
..
development infra: bump to next version on trunk at a branch point (#4288) 2020-10-29 17:46:07 -07:00
examples docs: update authentication guide to use storageState() api (#4948) 2021-01-08 12:24:10 -08:00
src api: add isChecked method (#4953) 2021-01-08 17:36:17 -08:00