I am getting the symkey followed by the encoded value in the one of the request body while recording a UI flow in jmeter.
Is there a way to decipher this as my request fails after sometime and I get public key in the response.
I am getting the symkey followed by the encoded value in the one of the request body while recording a UI flow in jmeter.
Is there a way to decipher this as my request fails after sometime and I get public key in the response.
For sure there is, take a look at JSR223 Test Elements and Cipher class
You can access the full response from the JSR223 PostProcessor as prev.getResponseDataAsString()
where prev
stands for SampleResult or a JMeter Variable value as vars.get('your-variable-name-here')
where vars
stands for JMeterVariables
Check out Top 8 JMeter Java Classes You Should Be Using with Groovy article for more information on above and other JMeter API shorthands available for the JSR223 Test Elements