I am trying to achieve automation testing for a bot using websocket api , I have installed botium core and websocket connector and able to run and test sample echoserver project, but when I tried to hit this url - wss://nexustek.intelliservice.ai/autobot through botium.json my bot are not able to connect though same url can be hit publicly using any websocket client, can someone help me what I am doing wrong I am new to botium and websocket.
My botium.json
{
“botium”: {
“Capabilities”: {
“PROJECTNAME”: “Botium Websocket”,
“CONTAINERMODE”: “websocket”,
“WEBSOCKET_URL”: “wss://nexustek.intelliservice.ai/autobot”,
“WEBSOCKET_REQUEST_BODY_TEMPLATE”: {
“conversationId”: “botium”,
“text”: “{{msg.messageText}}”
},
“WEBSOCKET_RESPONSE_TEXTS_JSONPATH”: “$.text”
}
}
}