Skip to main content

WebSocket

The WebSocket class represents websocket connections in the page.

webSocket.on('close')

Added in: v1.8

Fired when the websocket closes.

webSocket.on('framereceived')

Added in: v1.9

Fired when the websocket receives a frame.

webSocket.on('framesent')

Added in: v1.9

Fired when the websocket sends a frame.

webSocket.on('socketerror')

Added in: v1.9

Fired when the websocket has an error.

webSocket.isClosed()

Added in: v1.8

Indicates that the web socket has been closed.

webSocket.url()

Added in: v1.8

Contains the URL of the WebSocket.

webSocket.waitForEvent(event[, optionsOrPredicate, options])

Added in: v1.8
  • event <string> Event name, same one would pass into webSocket.on(event).#
  • optionsOrPredicate? <function|Object> Either a predicate that receives an event or an options object. Optional.#
    • predicate <function> receives the event data and resolves to truthy value when the waiting should resolve.
    • timeout? <number> maximum time to wait for in milliseconds. Defaults to 30000 (30 seconds). Pass 0 to disable timeout. The default value can be changed by using the browserContext.setDefaultTimeout(timeout).
  • options? <Object>
    • predicate? <function> Receives the event data and resolves to truthy value when the waiting should resolve.#
  • returns: <Promise<Object>>#

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.