puppeteer/docs/api/puppeteer.mouse.wheel.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-03-20 15:03:14 +00:00

997 B

sidebar_label
Mouse.wheel

Mouse.wheel() method

Dispatches a mousewheel event.

Signature:

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

Parameters

Parameter

Type

Description

options

Readonly<MouseWheelOptions>

(Optional) Optional: MouseWheelOptions.

**Returns:**

Promise<void>

Example

An example of zooming into an element:

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});