mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
9fbb9f9653
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
530 B
530 B
sidebar_label |
---|
PuppeteerLifeCycleEvent |
PuppeteerLifeCycleEvent type
Signature:
export type PuppeteerLifeCycleEvent =
/**
* Waits for the 'load' event.
*/
| 'load'
/**
* Waits for the 'DOMContentLoaded' event.
*/
| 'domcontentloaded'
/**
* Waits till there are no more than 0 network connections for at least `500`
* ms.
*/
| 'networkidle0'
/**
* Waits till there are no more than 2 network connections for at least `500`
* ms.
*/
| 'networkidle2';