如何从CSV数据集中读取Jmeter来避免逗号?

时间:2019-03-12 16:56:12

标签: java csv jmeter

我正在测试带有输入的聊天机器人,例如,其中一行读取

entityInput, Just in case, where is the nearest doctor's office

输入仅发送“以防万一”。我已经尝试过Just in case\, where is the nearest doctor's office

2 个答案:

答案 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"

将起作用。

来自https://stackoverflow.com/a/40273206