Home > Back-end >  Handling a browser dynamic value in Jmeter/Loadrunner
Handling a browser dynamic value in Jmeter/Loadrunner

Time:09-17

I have an application where in the dynamic value is generating at the browser level. Since it is not in any of the responses, I cannot correlate in Jmeter/Loadrunner. The workaround for now is to allow login without any validation and analyse the performance of remaining functionalities. But is there a way we can go without skipping login?

CodePudding user response:

There are 2 possible options:

  1. The value is present somewhere in the response (enter image description here

    enter image description here

    CodePudding user response:

    "...dynamic value is generating at the browser level..."

    You don't correlate this. It is not generated at the server, nor sent to the client.

    Simply reproduce the code which produces the value in your script. This is why testing tools have a general scripting language capability. Use the JavaScript Code which produced this value.

  • Related