puppeteer/docs/api/puppeteer.locator.on.md
2023-06-02 17:46:10 +00:00

714 B

sidebar_label
Locator.on

Locator.on() method

Signature:

class Locator {
  on<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