文本区 Jmeter 问题

发布于 2024-10-29 01:50:51 字数 99 浏览 1 评论 0原文

我尝试使用 JMeter 发送 HTTP 请求。输入字段之一是文本区域。该文本区域中的每一行都需要传入。如何在文本区域中指定新的输入行?我尝试了 %0 、空格、昏迷...但它不起作用。

I tried to use JMeter to send HTTP request. One of the input field is a textarea. each line in this text area need to be passed in. How do I specify a new line of input in text area? I tried %0 , space, coma... but it din't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘴硬脾气大 2024-11-05 01:50:51

您应该能够使用“%0A”对换行符进行编码。此编码相当于“\n”(LF) 字符。如果要模拟 Windows 样式换行符“\r\n”(CR+LF),则可以使用“%0D%0A”。如果您直接在参数文本字段值中指定编码,那么您将不想检查“编码?”当您手动包含编码时该参数的选项。

如果这不起作用,请包含您在 JMeter 脚本中使用的值以及您在服务器上看到的结果。还包括您如何监控服务器值。

我还要确保在您的脚本中添加一个“查看结果树”侦听器,以便您可以看到脚本发送的实际请求/响应数据。确保您发送的值符合您的预期非常有用。

You should be able to encode a newline character using '%0A'. This encoding would be equivalent to a '\n' (LF) character. If you want to simulate a Windows style newline '\r\n' (CR+LF), you would use '%0D%0A'. If you specify the encoding directly into the parameter text field value, then you will not want to check the 'Encode?' option for that parameter as you manually included the encoding.

If this does not work, please include the values you are using in your JMeter script and the result you are seeing on your server. Also include how you are monitoring the server values.

I would also make sure to add a 'View Results Tree' Listener to your script so that you can see the actual Request/Response data that was sent by your script. It is useful to make sure that the values you are sending are what you expect.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文