我在 Watson Assistant 技能上使用 Botium Box 爬虫。该机器人的初始语句包括一个问候语和七个按钮。Botium 正在为每个按钮生成测试用例,但按下按钮不会在 Watson Assistant 中生成正确的响应。
生成的案例如下:
1.6.2.2.2.4_hello_Password
#bot
#me
hello
#bot
UTT_M1_HI-THERE!
#bot
BUTTONS Benefits|Badges, Explanation of Badges or Certificate of Completion|COVID-19|ID Cards - Order, View, Print, Return|Employment/Termination|Password|None of the above, enter search text
#me
BUTTON password|Password
#bot
(responds as if Watson Assistant received the word "BUTTON" rather than the "password" value in "Password"-labeled button)
对话节点具有使用以下条件的子响应:
input.text=="password" or input.text.contains("password")
Watson Assistant 中按钮按下的预期行为是将按钮文本(不是标签)传递给按钮。在 Watson Assistant Try it Out 面板中,我单击“Password”,它会发送文本“password”。
我可以在 Try it Out 中复制 Botium 行为的唯一方法是传递文字文本“BUTTON”。即使 Botium 发送 input.text=="BUTTON password|Password" 我的条件也应该触发。
我使用 Botium Box 爬虫是错误的,还是爬虫中有错误?
更新:其他按钮驱动的提示工作,例如“是/否”按钮提示。我想知道是否存在解析问题,因为按钮的标签很长,带有一些特殊字符和标点符号。