(this: Playwright<ElementHandleExt>)
| 467 | } |
| 468 | |
| 469 | moveTo(this: Playwright<ElementHandleExt>) { |
| 470 | return this.continueChain(async (el) => { |
| 471 | await el.hover() |
| 472 | return el |
| 473 | }) |
| 474 | } |
| 475 | |
| 476 | async getComputedCss(this: Playwright<ElementHandleExt>, prop: string) { |
| 477 | return this.continueChain((el) => el.getComputedCss(prop)) |