Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 JMeter 中编写一个 BeanShell 脚本来处理 HTTP 请求的结果。我可以使用后处理器来捕获这些结果并单独处理,但这意味着为每个请求添加一个后处理器。
在 BeanShell 侦听器中是否可以访问所有结果,而不仅仅是通过 sampleResult、prev 变量访问的最后一个结果?
BeanShell 侦听器根据请求响应触发,因此通过为其编写脚本,我能够为每个 http 请求运行它。之前尝试过使用监听器但它不起作用,所以我尝试了后处理器。但是,这似乎是我的脚本中的一个问题导致了问题。