Hello,
Welcome to Microsoft Q&A,
Azure Load Testing does not allow arbitrary file paths in CSVDataSet configurations. The path you mentioned, "./${__property(users/)}file.csv" is considered dynamic or relative to a user-defined directory, and Azure rejects it.
Try using:
- All CSVs should be in the same directory as the
.jmx
test plan - Be referenced using only the file name (no path)
You can use like: ${__P(users,10)} but not ${__P(csv_path)}users.csv
Please upvote and accept the answer if it helps!!