* * [Additional options](https://playwright.dev/docs/api/class-elementhandle#element-handle-check) for check available as 3rd argument. * * Examples: * * ```js * // click on element at position * I.checkOption('Agree', '.signup', { position: { x: 5, y: 5 } }) * ``` * > ⚠️
(field, context = null, options = { force: true })
| 2161 | * |
| 2162 | */ |
| 2163 | async checkOption(field, context = null, options = { force: true }) { |
| 2164 | const elm = await this._locateCheckable(field, context) |
| 2165 | await elm.check(options) |
| 2166 | return this._waitForAction() |
| 2167 | } |
| 2168 | |
| 2169 | /** |
| 2170 | * |
nothing calls this directly
no test coverage detected