0

我在 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 爬虫是错误的,还是爬虫中有错误?

更新:其他按钮驱动的提示工作,例如“是/否”按钮提示。我想知道是否存在解析问题,因为按钮的标签很长,带有一些特殊字符和标点符号。

4

2 回答 2

0

您可以通过设置 DEBUG=botium-* 环境变量来获取更详细的日志。所以在命令行中它应该是这样的:

DEBUG=botium-* botium-cli crawler-run --entryPoints 'hello'

在这种情况下,您将获得一个日志和非常详细的日志。您可以使用 exitCriteria(例如:)来减少其大小,--exitCriteria 'Benefits' 'Badges'以排除那些正常工作的路径。我们将调查详细日志,请发送给我们。

于 2021-05-26T13:03:05.190 回答
0

该问题必须在下一个版本的爬虫包中得到解决。如果您现在需要此修复,那么我们可以直接更新您的试用实例。

于 2021-05-31T13:42:15.740 回答