puppeteer/docs/api/puppeteer.browser.wsendpoint.md

30 lines
646 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Browser.wsEndpoint
---
# Browser.wsEndpoint() method
2023-09-18 09:05:23 +00:00
Gets the WebSocket URL to connect to this [browser](./puppeteer.browser.md).
This is usually used with [Puppeteer.connect()](./puppeteer.puppeteer.connect.md).
2023-11-29 13:29:13 +00:00
You can find the debugger URL (`webSocketDebuggerUrl`) from `http://HOST:PORT/json/version`.
2023-09-18 09:05:23 +00:00
See [browser endpoint](https://chromedevtools.github.io/devtools-protocol/#how-do-i-access-the-browser-target) for more information.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Browser {
2023-09-18 09:05:23 +00:00
abstract wsEndpoint(): string;
2022-07-05 13:41:43 +00:00
}
```
**Returns:**
string
## Remarks
2023-11-29 13:29:13 +00:00
The format is always `ws://HOST:PORT/devtools/browser/<id>`.