Jmeter BSF Sampler JavaScript 调试
有没有好的方法可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JavaScript 可以使用 JMeter 的记录器及其日志级别,例如调试、信息
尝试:
JavaScript can use the logger from JMeter and its log levels e.g. debug, info
try:
您可以使用
print()
命令来实现此目的。它将写入 Jmeter 控制台。you can use the
print()
command for this. It will write to the Jmeter console.您可以在 BSF Sampler、BSF PreProcessor、BSF PostProcessor 中对 OUT.println 进行调用。这会将行写入 jmeter 控制台窗口。例如:
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: