How can we do URL Encoding in Robot Framework…as this feature is given inbuild in Postman.
So API Working with Postman but not with Robot Framework
How can we do URL Encoding in Robot Framework…as this feature is given inbuild in Postman.
So API Working with Postman but not with Robot Framework
You can use Python functions directly, in string variables or with Evaluate
.
Don’t have an example here at the moment, but you may experiment on your own ;).
All the libraries that deal with API testing in Robot Framework rely on the Python requests
package. requests
handles the URL encoding automatically.
What exactly are you trying to do and what error are you getting?