mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
658 B
658 B
sidebar_label |
---|
Browser.wsEndpoint |
Browser.wsEndpoint() method
Gets the WebSocket URL to connect to this browser.
This is usually used with Puppeteer.connect().
You can find the debugger URL (webSocketDebuggerUrl
) from http://${host}:${port}/json/version
.
See browser endpoint for more information.
Signature:
class Browser {
abstract wsEndpoint(): string;
}
Returns:
string
Remarks
The format is always ws://${host}:${port}/devtools/browser/<id>
.