puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.elementhandle.click.md
release-please[bot] d963fcdd80
chore: release main (#12456)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-05-24 07:26:52 +00:00

850 B

sidebar_label
ElementHandle.click

ElementHandle.click() method

This method scrolls element into view if needed, and then uses Page.mouse to click in the center of the element. If the element is detached from DOM, the method throws an error.

Signature:

class ElementHandle {
  click(
    this: ElementHandle<Element>,
    options?: Readonly<ClickOptions>
  ): Promise<void>;
}

Parameters

Parameter

Type

Description

this

ElementHandle<Element>

options

Readonly<ClickOptions>

(Optional)

**Returns:**

Promise<void>