diff --git a/tests/library/inspector/inspectorTest.ts b/tests/library/inspector/inspectorTest.ts index f5eae5153a..6ebbc1fdd1 100644 --- a/tests/library/inspector/inspectorTest.ts +++ b/tests/library/inspector/inspectorTest.ts @@ -186,10 +186,7 @@ class Recorder { await this.page.mouse.move(box.x + box.width / 2, box.y + box.height / 2); } - async trustedClick(options?: { - button?: 'left' | 'right' | 'middle'; - clickCount?: number; - }) { + async trustedClick(options?: { button?: 'left' | 'right' | 'middle' }) { await this.page.mouse.down(options); await this.page.mouse.up(options); }