We have a WebService which takes formData
key-value pair as the request instead of json. Using openTest
how can we pass these formData
? Basically we need a code snippet to post the formData
using OpenTest
yaml script.
Below is the sample curl command which we need to post using OpenTest which has Content-Type as multipart/form-data
`
curl --location --request POST 'https://serviceurl.com/getacb' \
--form 'userKey=a1b23' \
--form 'apiKey=1_ffER_hk6Rb89--2EElfsdeF3' \
--form 'secret=Ude+6NIjojo89/gyAB7huGS5' \
--form 'targetUID=ulknnk4kjlkj5'
`
We are looking for a sample snippet to post the above multipart/form-data.
You'll need to build the FormData() object yourself before passing it to the next action.
This is the sample with some modifications from OpenTest API testing YAML.