Florian Treml
Florian Treml
What about this ? Should immediately assert the *Statement1* response, then wait up to 40 seconds for the *Statement2* ``` #bot Statement1. #bot WAITFORBOT 40000 Statement2. ```
A better place to ask such question is the Botium Forum https://forum.botium.ai/
By default, Mocha is expecting each test case to complete within 60 seconds. For conversations that last longer, there is the option to increase this timeout in the file _spec/botium.spec.js_...
AVS is maintaining context, thats why it is not possible to parallelize tests with the same Alexa account. Nitinvermaa ***@***.***> schrieb am Sa., 20. März 2021, 07:32: > Did you...
Amazing efforts you have done here, congratulations. I think that we will have to solve the problem you described somehow in Botium as well, to support the long-running test cases.
Hello, Accessing facebook servers in automated way (as with Botium) is forbidden by Facebook itself, and they are taking it seriously - your account will be locked immediately if there...
Two options: 1. You can use regular expressions, for this you can configure the matching mode capability (https://github.com/codeforequity-at/botium-core/wiki/Botium-Configuration#scripting_matching_mode) 2. Dependening on your scenario, you can use seperate utterances files as...
_SCRIPTING_ENABLE_MEMORY_ is not vital for this example. _SCRIPTING_MATCHING_MODE_ capability is missing, you have to tell Botium to interpret the assertions as regular expressions. Finally, the _$_ character and the _._...
the mode regexpIgnoreCase is only included in the very very latest botium-core build. maybe you have to update the software first.
**Question 1** Just convert JSON to string: process.env.BOTIUM_SIMPLEREST_HEADERS_TEMPLATE = JSON.stringify({ "Authorization": "Bearer MYTOKEN" }) **Question 2** Several options available. You can use a [request hook](https://botium.atlassian.net/wiki/spaces/BOTIUM/pages/24510469/Generic+HTTP+S+JSON+Connector#SIMPLEREST_REQUEST_HOOK): "SIMPLEREST_REQUEST_HOOK": "requestOptions.headers.Authorization = 'Bearer '...