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>