Mouse.wheel() メソッド
mousewheel
イベントをディスパッチします。
シグネチャ:
class Mouse {
abstract wheel(options?: Readonly<MouseWheelOptions>): Promise<void>;
}
パラメータ
パラメータ | タイプ | 説明 |
---|---|---|
options | 非編集可能な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});