(this: Playwright<ElementHandleExt>, text: string)
| 460 | } |
| 461 | |
| 462 | type(this: Playwright<ElementHandleExt>, text: string) { |
| 463 | return this.continueChain(async (el) => { |
| 464 | await el.type(text) |
| 465 | return el |
| 466 | }) |
| 467 | } |
| 468 | |
| 469 | moveTo(this: Playwright<ElementHandleExt>) { |
| 470 | return this.continueChain(async (el) => { |