How to add assertion on response message in jsr223 postprocessor using java code.
I tried using AssertionResult.setFailure(true);
but it is not working
How to add assertion on response message in jsr223 postprocessor using java code.
I tried using AssertionResult.setFailure(true);
but it is not working
Something like:
def expectedMessage = 'some expected message'
def actualMessage = prev.getResponseMessage()
if (expectedMessage != actualMessage) {
AssertionResult.setFailure(true)
}
Should do the trick for you, in the above example prev
stands for previous SampleResult
Demo:
More information: Scripting JMeter Assertions in Groovy - A Tutorial
Also get used to look at jmeter.log file, it might be the case your script fails somewhere somehow
Use JSR223 Assertion instead JSR223 PostProcessor
You are missing calling setFailureMessage