I have a issue in passing dynamic value in request header of jmeter script. Here is the sequence:
Http Request1: Regular expression extractor for extracting the dynamic value from Response Header -- this is ok , variable C_Xscrftokenid2 stores the dynamic string.
Http request2: Pass this C_Xscrftokenid2 Dynamic value to the request Header (web_add_header..)--> Failing Reason:${C_Xscrftokenid2}-> in the output i dont see the value inside the braces getting replaced with the dynamic value instead i simply see the output as below:
Request Headers:
MaxDataServiceVersion: 2.0
X-Requested-With: XMLHttpRequest
x-csrf-token: ${C_Xscrftokenid2}
May i know the reason? Thank you.