mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
eedbb13ada
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
600 B
600 B
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>