Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 346 Bytes

puppeteer.browser.close.md

File metadata and controls

19 lines (13 loc) · 346 Bytes
sidebar_label
Browser.close

Browser.close() method

Closes Chromium and all of its pages (if any were opened). The Browser object itself is considered to be disposed and cannot be used anymore.

Signature:

class Browser {
  close(): Promise<void>;
}

Returns:

Promise<void>