-1

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.

1 Answers1

0

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

Dmitri T
  • 159,985
  • 5
  • 83
  • 133
  • Thanks for this Dmitri, but looks like even I dicepher it I am not sure where it is getting generated. I could only found some js fun tion related to this – SHUBHAM PAREEK May 13 '22 at 23:35