mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
d963fcdd80
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
850 B
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) |
Promise<void>