Virender Pannu
Virender Pannu

Reputation: 11

Jmeter Corelation

I'm not able to find value for "Original request" and "flowToken" from the responses of last requests, as shown in body data. Can you please help me out to how to find above-mentioned dynamic values?

This is the current error I am experiencing enter image description here

Upvotes: 1

Views: 61

Answers (1)

Dmitri T
Dmitri T

Reputation: 168122

It might be the case it's not in the response body, it might be a part of URL where you're being redirected or comes as a response header

Try performing your login in browser having the Network tab of the developer tools active and recording the requests, then export the requests and responses as HAR file (which is normal JSON under the hood) and search for these request parameters to detect the request where they appear first.

You might also want to try out BlazeMeter Proxy Recorder which is capable of exporting recorded requests in "Smart JMX" mode with automatic detection and correlation of dynamic parameters

Upvotes: 1

Related Questions