How i can pass the value of below from one http request to another in Jmeter ?
code value generate random value at run time.I need to extract the value of code.
var launch_url = "/abc/FileUpload/FileUpload.application?code=" + code;
I explored RegularExpression / CSS Extractor but was not able to fit in my case.
I am extracting the value of Antiforgerytoken like below sample (Screenshot) and it works -
<input type="hidden" name="ctl00$AntiforgeryToken" id="AntiforgeryToken" value="40579e4b-7718-4bb2-abaa-4d98c391fb48" />
but i am not sure how to extract value of code from this ??
var launch_url = "/abc/FileUpload/FileUpload.application?code=" + code;