Passing multipart/form-data with file and parameter as part of ROBOT Framework

Viewed 18

I'm trying to make a api request using the Requests library from robot framework. I need to pass a binary file: enter image description here and also some parameters. On postman I can do it without problems.

POSTMAN: enter image description here

My CODE: enter image description here

Retrieve ERROR 400

1 Answers

Found the solution, we need to separate thje file and the data parameters enter image description here

Related