我正在测试带有输入的聊天机器人,例如,其中一行读取
entityInput, Just in case, where is the nearest doctor's office
输入仅发送“以防万一”。我已经尝试过Just in case\, where is the nearest doctor's office
答案 0 :(得分:2)
您阅读过CSV specification (RFC 4180)或Wikipedia page吗?它说的恰恰是您不会逃避,
而是将整个文本包装到""
中
entityInput, "Just in case, where is the nearest doctor's office"
只要实现符合要求,就应该起作用。
答案 1 :(得分:0)
在JMeter中,还需要进行其他更改。
您的测试计划中应具有CSV数据集设置配置。在这种情况下,您应该寻找一个称为“允许引用数据”的设置。并将其更改为true。
然后
entityInput, "Just in case, where is the nearest doctor's office"
将起作用。