abc
abc

Reputation: 1

Bean shell post processor ,which compares two csv files and writes differences to third file

I am new to jmeter, I want to compare the two csv files ( one which have standard output and other latest test run results file), if there is any difference then it should write the difference to another file.

I want to do this in bean shell postprocessor

Thanks in advance

Upvotes: 0

Views: 332

Answers (1)

Dmitri T
Dmitri T

Reputation: 168002

Your approach doesn't make a lot of sense as there are too many varying values (i.e. request timestamp, response time, connect time, latency, etc.) so basically you won't be able to find 2 identical lines in 2 JMeter result files for the same test plan.

I would recommend using one of the next alternative approaches:

You can install Merge Results tool using JMeter Plugins Manager

Upvotes: 0

Related Questions