Skip to content

WebSocket

Source URL: https://playwright.dev/docs/api/class-websocket

The WebSocket class represents WebSocket connections within a page. It provides the ability to inspect and manipulate the data being transmitted and received.

If you want to intercept or modify WebSocket frames, consider using WebSocketRoute.


Added before v1.9 webSocket.isClosed

Indicates that the web socket has been closed.

Usage

webSocket.isClosed();

Returns


Added before v1.9 webSocket.url

Contains the URL of the WebSocket.

Usage

webSocket.url();

Returns


Added before v1.9 webSocket.waitForEvent

Waits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy value. Will throw an error if the webSocket is closed before the event is fired. Returns the event data value.

Usage

await webSocket.waitForEvent(event);
await webSocket.waitForEvent(event, optionsOrPredicate, options);

Arguments

Event name, same one would pass into webSocket.on(event).

Receives the event data and resolves to truthy value when the waiting should resolve.

* `timeout` [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type "Number") _(optional)_

Maximum time to wait for in milliseconds. Defaults to 0 - no timeout. The default value can be changed via actionTimeout option in the config, or by using the browserContext.setDefaultTimeout() or page.setDefaultTimeout() methods.

Either a predicate that receives an event or an options object. Optional.

Receives the event data and resolves to truthy value when the waiting should resolve.

Returns


Added before v1.9 webSocket.on(‘close’)

Fired when the websocket closes.

Usage

webSocket.on('close', data => {});

Event data


Added in: v1.9 webSocket.on(‘framereceived’)

Fired when the websocket receives a frame.

Usage

webSocket.on('framereceived', data => {});

Event data

frame payload


Added in: v1.9 webSocket.on(‘framesent’)

Fired when the websocket sends a frame.

Usage

webSocket.on('framesent', data => {});

Event data

frame payload


Added in: v1.9 webSocket.on(‘socketerror’)

Fired when the websocket has an error.

Usage

webSocket.on('socketerror', data => {});

Event data