From 3ece2f5aea8d745cd69a914d59d84117f8c49fdc Mon Sep 17 00:00:00 2001 From: Matt Kleinsmith <8968171+MattKleinsmith@users.noreply.github.com> Date: Mon, 15 Jul 2024 17:25:20 -0700 Subject: [PATCH] Drop clickCount as it is unused --- tests/library/inspector/inspectorTest.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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); }