(this: Playwright<ElementHandleExt>)
| 494 | } |
| 495 | |
| 496 | click(this: Playwright<ElementHandleExt>) { |
| 497 | return this.continueChain(async (el) => { |
| 498 | await el.click() |
| 499 | return el |
| 500 | }) |
| 501 | } |
| 502 | |
| 503 | touchStart(this: Playwright<ElementHandleExt>) { |
| 504 | return this.continueChain(async (el) => { |