mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
720 B
720 B
sidebar_label |
---|
Locator.once |
Locator.once() method
Signature:
class Locator {
once<K extends keyof LocatorEventObject>(
eventName: K,
handler: (event: LocatorEventObject[K]) => void
): this;
}
Parameters
Parameter | Type | Description |
---|---|---|
eventName | K | |
handler | (event: LocatorEventObject[K]) => void |
Returns:
this