i have one scenario like i have one extracted variable "A"
and other variable "B", i want to put one condition in java script that if "A" containing some value then assign to"B"
now i want to know how i can extract value from "A" and set in B in java-script ?
From a Javascript, if you would like to get the content of any NeoLoad variable, you need to use a method like this:
var MyValue=context.variableManager.getValue("VariableA");
In order to store a value into a variable you need to use something like that:
context.variableManager.setValue("VariableB",MyValue);
That will store the content of MyValue into your VariableB.