跳至主要內容
版本:23.11.1

Mouse.wheel() 方法

發送一個 mousewheel 事件。

簽名

class Mouse {
abstract wheel(options?: Readonly<MouseWheelOptions>): Promise<void>;
}

參數

參數

類型

描述

options

Readonly<MouseWheelOptions>

(可選) 可選:MouseWheelOptions

返回

Promise<void>

範例

一個縮放元素的範例

await page.goto(
'https://mdn.mozillademos.org/en-US/docs/Web/API/Element/wheel_event$samples/Scaling_an_element_via_the_wheel?revision=1587366',
);

const elem = await page.$('div');
const boundingBox = await elem.boundingBox();
await page.mouse.move(
boundingBox.x + boundingBox.width / 2,
boundingBox.y + boundingBox.height / 2,
);

await page.mouse.wheel({deltaY: -100});