I'm trying to assign a user value which is base64 characters and the Content-Type which is "application/x-www-form-urlencoded". In my postman Content-Type is under Headers and user under body. Therefore i structured my yaml script like below :
execution:
- concurrency: 10
ramp-up: 20S
hold-for: 1m
scenario: sample
scenarios:
sample:
requests:
- url: 'https://www.mtn.com/umbraco/surface/loginsurface/authenticate'
method: POST
headers:
Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp, application/x-www-form-urlencoded'
Body:
user: 'YWFkaWwuaaa2hhbkBzb3RpLdDpXZWxjb21lMTIzNA=='
However This isn't working when i'm running Taurus. Is the syntax wrong?