feat: add scroll wheel zoom setting (#9476)

### Changed
Add `scroll wheel to zoom` setting option, when the option enables, user can zoom in and out with scroll wheel without pressing the cmd/ctrl key.
This commit is contained in:
doouding
2025-01-03 06:09:10 +00:00
parent 0699205721
commit cb5d7eaabc
13 changed files with 155 additions and 36 deletions

View File

@@ -825,11 +825,14 @@ export async function clickComponentToolbarMoreMenuButton(
export async function zoomByMouseWheel(
page: Page,
stepX: number,
stepY: number
stepY: number,
pressedKey = true
) {
await page.keyboard.down(SHORT_KEY);
if (pressedKey) await page.keyboard.down(SHORT_KEY);
await page.mouse.wheel(stepX, stepY);
await page.keyboard.up(SHORT_KEY);
if (pressedKey) await page.keyboard.up(SHORT_KEY);
}
// touch screen is not supported by Playwright now