puppeteer/docs/api/puppeteer.browser.wsendpoint.md
2023-09-18 11:05:23 +02:00

30 lines
658 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>`.