Karate version - 1.0.0
I want to get the queryparams and url and want to concat it and save it to a variable.. I'm using following syntax which doesn't work. when I use param in variable it says param not defined. Does anyone have any work around for this? When I use the following -
Given path '/test/1'
And param product = "abc"
And param country = "usa"
* print param
org.graalvm.polyglot.PolyglotException: ReferenceError: "param" is not defined
How do I concat url and param and get in a variable.
Many thanks!