I am using Jmeter and I am testing if a JSON response from a GET request is correct by using JSR223 Assertion.
When the script is correct then the results are correct (unless of course there is something wrong with the response). However if the script is incorrect the test fails even though that the response is accurate, which is the expected behavior.
But then I have to check each line of the script so that I can find the differencies with the response in order to fix it. This wastes a lot of time.
I am not speaking of missing symbols but rather additional lines that are compared to the JSON response but are not actually in it. For example I am comparing country code in the assertion but there is no country code in the response.
Is there a way that JSR223 Assertion can return the differencies in the debugger for Jmeter?
Thank you in advance!