2021-01-07 11:46:05 -08:00
# class: WebSocket
The [WebSocket] class represents websocket connections in the page.
## event: WebSocket.close
2021-02-25 22:22:47 -08:00
- argument: < [WebSocket]>
2021-01-07 11:46:05 -08:00
Fired when the websocket closes.
2021-02-04 19:34:09 +01:00
## event: WebSocket.frameReceived
2021-02-25 22:22:47 -08:00
- argument: < [Object]>
2021-01-07 11:46:05 -08:00
- `payload` < [string]|[Buffer]> frame payload
Fired when the websocket recieves a frame.
2021-02-09 12:11:48 -08:00
## event: WebSocket.frameReceived
* langs: csharp, java
2021-02-25 22:22:47 -08:00
- argument: < [WebSocketFrame]>
2021-02-09 12:11:48 -08:00
2021-02-04 19:34:09 +01:00
## event: WebSocket.frameSent
2021-02-25 22:22:47 -08:00
- argument: < [Object]>
2021-01-07 11:46:05 -08:00
- `payload` < [string]|[Buffer]> frame payload
Fired when the websocket sends a frame.
2021-02-09 12:11:48 -08:00
## event: WebSocket.frameSent
* langs: csharp, java
2021-02-25 22:22:47 -08:00
- argument: < [WebSocketFrame]>
2021-02-09 12:11:48 -08:00
2021-02-04 19:34:09 +01:00
## event: WebSocket.socketError
2021-02-25 22:22:47 -08:00
- argument: < [String]>
2021-01-07 11:46:05 -08:00
Fired when the websocket has an error.
## method: WebSocket.isClosed
- returns: < [boolean]>
Indicates that the web socket has been closed.
## method: WebSocket.url
- returns: < [string]>
Contains the URL of the WebSocket.
## async method: WebSocket.waitForEvent
2021-02-01 11:13:13 -08:00
* langs: csharp, js, python
2021-01-15 16:01:41 -08:00
- alias-python: expect_event
2021-01-07 11:46:05 -08:00
- returns: < [any]>
Waits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy
2021-01-15 16:01:41 -08:00
value. Will throw an error if the webSocket is closed before the event is fired. Returns the event data value.
2021-01-07 11:46:05 -08:00
### param: WebSocket.waitForEvent.event
- `event` < [string]>
Event name, same one would pass into `webSocket.on(event)` .
### param: WebSocket.waitForEvent.optionsOrPredicate
2021-01-08 15:00:14 -08:00
* langs: js
2021-01-12 12:14:27 -08:00
- `optionsOrPredicate` < [function]|[Object]>
- `predicate` < [function]> receives the event data and resolves to truthy value when the waiting should resolve.
2021-01-07 11:46:05 -08:00
- `timeout` < [float]> 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 [`method: BrowserContext.setDefaultTimeout` ].
Either a predicate that receives an event or an options object. Optional.
2021-02-04 21:15:14 -08:00
## method: WebSocket.waitForFrameReceived
* langs: csharp, java
- returns: < [WebSocketFrame]>
Performs action and waits for a frame to be sent. If predicate is provided, it passes
[WebSocketFrame] value into the `predicate` function and waits for `predicate(webSocketFrame)` to return a truthy value.
Will throw an error if the WebSocket or Page is closed before the frame is received.
### option: WebSocket.waitForFrameReceived.predicate
2021-02-12 09:19:41 -08:00
- `predicate` < [function]\([WebSocketFrame]\):[boolean]>
2021-02-04 21:15:14 -08:00
Receives the [WebSocketFrame] object and resolves to truthy value when the waiting should resolve.
### option: WebSocket.waitForFrameReceived.timeout = %%-wait-for-event-timeout-%%
## method: WebSocket.waitForFrameSent
* langs: csharp, java
- returns: < [WebSocketFrame]>
Performs action and waits for a frame to be sent. If predicate is provided, it passes
[WebSocketFrame] value into the `predicate` function and waits for `predicate(webSocketFrame)` to return a truthy value.
Will throw an error if the WebSocket or Page is closed before the frame is sent.
### option: WebSocket.waitForFrameSent.predicate
2021-02-12 09:19:41 -08:00
- `predicate` < [function]\([WebSocketFrame]\):[boolean]>
2021-02-04 21:15:14 -08:00
Receives the [WebSocketFrame] object and resolves to truthy value when the waiting should resolve.
### option: WebSocket.waitForFrameSent.timeout = %%-wait-for-event-timeout-%%