Questions tagged [botium-box]
55 questions
0
votes
1 answer
Botium test chatbot button and text
Here is the part of the botium.json where i send my text request
"SIMPLEREST_URL": "https://******************/messaging/api/widget/request",
"SIMPLEREST_METHOD": "POST",
"SIMPLEREST_HEADERS_TEMPLATE": {"Authorization" : "Basic…

Tom Bart
- 3
- 1
0
votes
1 answer
WebDriver IO fails to create chrome browser sessions when using in Botium
I have installed Botium-Binding and prepared my machine to have installed with selenium-standalone server as per the documentation in https://github.com/codeforequity-at/botium-connector-webdriverio.
Once everything is setup i have added below…

Kumar Punnana
- 1
- 1
0
votes
1 answer
Can we test gif and image with botium cli?
I am write a test suite where in the Conversation has GIF, emoticons and images being responded by the AWS lex chatbot.
Does botium cli provide that feature to test that?
0
votes
1 answer
Chatbot automation using Botim and WebdriverIO
I am new to botium and want to do parallel testing using botium(CLI and Binding)-webdriverIO.
Any configuration in botium.json file?

ace
- 33
- 4
0
votes
2 answers
Botium Box crawler test case failing on Watson Assistant buttons
I am using Botium Box crawler on a Watson Assistant skill.
The bot's initial statement includes a greeting and seven buttons.
Botium is generating test cases for each of the buttons, but the button-press does not generate the right response in…

Andrew R. Freed
- 357
- 1
- 10
0
votes
1 answer
In Botium speech processing, MaryTTS api gives response as a binary data. How do i convert and get it as a Audio?
I am a Beginner with the Botium speech processing. I am trying to convert the text to speech convertion and is using MaryTTs configured under botium speech processing. I configured Docker and from SwaggerUI i can see the response for TTS is a binary…

Dilu
- 3
- 1
0
votes
1 answer
Can we use Botium CLI for testing a mobile voice app in SauceLabs?
Can we leverage Botium speech processing and Botium CLI to test a mobile voice based App (built on Rasa)?
The idea is to test the app on SauceLabs or any cloud service. Most documentations are around Alexa Skills.
This article by Florian Treml is…

Ashish Ghosh
- 15
- 2
0
votes
0 answers
Text to speech API in Botium Speech Processing, gives me an ECONNREFUSEDError as response when testing in Swagger UI
I have configured the Botium speech processing in my system. However when i test the Text to speech api, it is returning connection refused error.
Error: Calling url http://tts:59125/voices failed: Error: connect ECONNREFUSED…

Dilu
- 3
- 1
0
votes
1 answer
botium-cli emulator does not work with the rasa connector
When I try to start the emulator for my rasa bot, I get this error. The rasa endpoint url works perfectly fine when I send it a request with curl.
$ botium-cli emulator
Error: Start failed: undefined
at…

ShivamSinha
- 11
- 4
0
votes
1 answer
The webdriver module is not found when run a custom sample with botium-cli?
I'm working on Windows 10, and I trying to run the custom sample that was cloned from https://github.com/codeforequity-at/botium-connector-webdriverio.git
I've already installed this components, following the steps into the links:
*Automation Tests:…

Maria
- 1
- 1
0
votes
1 answer
Botium-core unable to load custom asserter
I recently updated the dependencies in my test project. After updating, botium-core is unable to load the custom asserters I had defined.
Here is a snippet of package.json that shows my dependencies.
"dependencies": {
"botium-connector-dialogflow":…
0
votes
1 answer
getting readscript error when running botium-cli (Botium)
I am trying out botium-cli for the first time and I am unable to run the sample script. I get the following error:
xxxx-MacBook-Pro:Botium xxxxx$ npx botium-cli run --convos .
/Users/xxx/Desktop/Botium/node_modules/yargs/build/index.cjs:2772
…
0
votes
1 answer
Can Botium CLI generate Botium test scripts out of convo files and utterances?
I want to use Botium for creating chatbot test scripts.
For that I will define Botium convo and utterance files.
Can I activate the CLI (or other Botium api) to parse the Botium files and generate expanded test scripts out of those files?
I want the…

Tal Haham
- 1,500
- 12
- 16
0
votes
1 answer
How to build a question on test cases may have multiple answers in Botium-box?
I have created a HTTP(S)/JSON Connector to connect my NLP chatbot.
But I encountered a problem when writing test cases.
Because users say that a question may have multiple different responses.
For example, I say "Hi" to the robot, the robot may say…

ryan.chen
- 33
- 6
0
votes
0 answers
Why botium-box HTTP(S)/JSON connector request is empty?
This is my demo code:
from flask import Flask , jsonify, request, render_template
import json
app = Flask(__name__)
@app.route('/t',methods=['GET','POST'])
def t():
print(request.data)
print (request.headers)
return…

ryan.chen
- 33
- 6