puppeteer/new-docs/puppeteer.elementhandle.click.md
Alex Rudenko 6657364364
docs(new): migrate ElementHandle to TSDoc (#6073)
* docs(new): migrate ElementHandle to TSDoc

Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
2020-06-22 17:21:57 +02:00

756 B

Home > puppeteer > 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:

click(options: ClickOptions): Promise<void>;

Parameters

Parameter Type Description
options ClickOptions

Returns:

Promise<void>