For login and other screens, our application responses are in the json format as mentioned in the screenshot.
How can i create a variable in this scenario to pass multiple credentials to the login screen?
Can you please help me out with this?
Hi, variable extractors can be used to extract values from JSON responses and store those values in variables. For the requests, you can edit the payload like this
{"password":${varPassword},"email":${varEmail}}
where ${myvariablename} is the variable
...here is the help link for variable extraction, the what's new in 6.1 also mentions JSON. hope it helps
https://www.neotys.com/documents/doc/neoload/latest/en/ht...
Thanks Neil for the quick response.
Can you please let me know the steps to do this?