Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 530 Bytes

puppeteer.puppeteerlifecycleevent.md

File metadata and controls

29 lines (26 loc) · 530 Bytes
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';