Jmeter BSF Sampler JavaScript 调试

发布于 2024-12-10 18:39:43 字数 108 浏览 0 评论 0原文

有没有好的方法可以使用 Jmeter 调试用 JavaScript 编写的 BSF Sampler?例如,经常在浏览器中使用console.log()。有没有类似的方法可以在 Jmeter 中看到输出?

Is there a good way to debug my BSF Sampler written in JavaScript using Jmeter? For instance, using console.log() in the browser is often used. Is there a method like that where I can see the output in Jmeter?

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

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

发布评论

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

评论(3

岁月流歌 2024-12-17 18:39:43

JavaScript 可以使用 JMeter 的记录器及其日志级别,例如调试、信息

尝试:

log.info("Hello World!");

JavaScript can use the logger from JMeter and its log levels e.g. debug, info

try:

log.info("Hello World!");
秉烛思 2024-12-17 18:39:43

您可以使用 print() 命令来实现此目的。它将写入 Jmeter 控制台。

you can use the print() command for this. It will write to the Jmeter console.

哑剧 2024-12-17 18:39:43

您可以在 BSF Sampler、BSF PreProcessor、BSF PostProcessor 中对 OUT.println 进行调用。这会将行写入 jmeter 控制台窗口。例如:

OUT.println("hello world");

You can place calls to OUT.println to your javascripts in the BSF Sampler, BSF PreProcessor, BSF PostProcessor. This will write lines to the jmeter console window. For example:

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