mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
646 B
Markdown
30 lines
646 B
Markdown
---
|
|
sidebar_label: Browser.wsEndpoint
|
|
---
|
|
|
|
# Browser.wsEndpoint() method
|
|
|
|
Gets the WebSocket URL to connect to this [browser](./puppeteer.browser.md).
|
|
|
|
This is usually used with [Puppeteer.connect()](./puppeteer.puppeteer.connect.md).
|
|
|
|
You can find the debugger URL (`webSocketDebuggerUrl`) from `http://HOST:PORT/json/version`.
|
|
|
|
See [browser endpoint](https://chromedevtools.github.io/devtools-protocol/#how-do-i-access-the-browser-target) for more information.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Browser {
|
|
abstract wsEndpoint(): string;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
string
|
|
|
|
## Remarks
|
|
|
|
The format is always `ws://HOST:PORT/devtools/browser/<id>`.
|