Send a data string through the connection. Binary data is not currently supported.
You can use JSON.stringify to convert a JSON or JavaScript values to a JSON string.
Parameter
Type
Description
data
string
The data to send.
Example
import ws from'k6/ws';
exportdefaultfunction(){
var url ='ws://echo.websocket.org';
var response = ws.connect(url,null,function(socket){