Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 600 Bytes

puppeteer.browser.version.md

File metadata and controls

23 lines (15 loc) · 600 Bytes
sidebar_label
Browser.version

Browser.version() method

Gets a string representing this browser's name and version.

For headless browser, this is similar to "HeadlessChrome/61.0.3153.0". For non-headless or new-headless, this is similar to "Chrome/61.0.3153.0". For Firefox, it is similar to "Firefox/116.0a1".

The format of Browser.version() might change with future releases of browsers.

Signature:

class Browser {
  abstract version(): Promise<string>;
}

Returns:

Promise<string>