Test Plan or referenceThis is my first time working with Jmeter. I have 2 questions over here
1.While trying to execute methods ctx.getCurrentSampler() and ctx.getPreviousSampler() in Beanshell PreProcessor, its returning me same request for both the methods.
- Arguments arguments = ctx.getCurrentSampler().getArguments();
log.info("count of argument= " +arguments.getArgumentCount()); ==> returns me 0
Though log.info("Current Sampler "+ctx.getCurrentSampler()); returns me the request, not sure why the count returns 0.
FYI: I am passing requests using a csv file
Can someone help me to figure out if I am missing anything over here