puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.browser.wsendpoint.md

30 lines
646 B
Markdown
Raw Normal View History

---
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>`.