Reputation: 583
I'm writing a BeanShell script in JMeter to process the results of the HTTP Requests. I'm able to use the Post-processor to capture these results and process individually however it means adding a Post-processor to every Request.
Is it possible in the BeanShell listener to access all results rather than just the last one which is accessible via the sampleResult, prev variables?
Upvotes: 3
Views: 2231
Reputation: 583
The BeanShell listener fires per request response so by writing the script for it i was able to run it for each http request. Had tried using the Listener before and it didn't work so I tried the post-processor. However it appears it was an issue in my script causing the problem.
Upvotes: 2