Skip to main content
Version: 22.9.0

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';