Skip to content
Advertisement

Add an empty object in a request payload in Karate testcase

How to insert a empty object in the request payload in karate . Need to send an empty emp object in the payload

Sample Payload

{"empInfo":{}}

Tried the syntax below, did not work.

  • set aReq.acctInfo == {};

Advertisement

Answer

It worked

  • set payload.empInfo = {};
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement