I am confused on a Jmeter variable not getting picked up by the CSV Data config. I have a Thread with HTTP request, CSV Data Config, HTTP Header Manager, and Results Tree. Everything seems to work fine, but there is just one variable that is not recognized...
Here is the Request Body after running the test:
{
"W_ID": "${W_ID}",
"b": "b",
"c": "c",
"d": "d"
}
For some reason the W_ID variable is not being recognized, but other variables are. All rows have the correct value assigned to them except the W_ID. I tried deleting the W_ID column from my file(in case there was weird formatting or white space), saving, and re-running the test, but same results.
Any ideas? Thanks for your help! Please let me know if I can provide more information or clarity.
Edit1: I noticed that the object name shows up in the body of the service... could that have an impact? This is the body (inv_adj is the object name):
{
"inv_adj": {
"W_ID": "string",
"a": "string",
"b": "string",
"c": "string",
}
Edit2:
CSV variables were requested:
Row 1: W_ID, b, c, d
Row 2: a, b, c, d






