Hi,
I am trying to test data-sources and would tried the below.
```
---
modules:
jmeter:
path: /path/to/apache-jmeter-5.1.1
execution:
- concurrency: 1
hold-for: 1m
scenario: sampleScenario
scenarios:
sampleScenario:
data-sources:
- path: /path/to/file.csv
delimiter: ','
quoted: false
loop: false
variable-name: sampleId,sampleType
requests:
- url:
https://domain.com/sample/service/${sampleId}/${sampleType}` label: test-data-source
method: GET
headers:
testId: testKey
testSecret: ]@33$53dd@
file.csv
~~~~~~~~~~~~
1234,type1
2234,type2
665523,type3
444998,type4
```
1. The value from csv never gets updated to the URL. I always get 'Illegal character in the path' error. any issue with the yml ?
2. The header 'testSecret', the value starts with ']' and taurus does not like it . How can I escape that character ? tried both single and double quotes.
Thanks.