Karate framework symbol encoding in url
Works for me:
* url 'https://httpbin.org/anything/%2F/my_exchange'
* method get
And in the log:
1 > GET https://httpbin.org/anything/%2F/my_exchange
1 > Accept-Encoding: gzip,deflate
1 > Connection: Keep-Alive
1 > Host: httpbin.org
1 > User-Agent: Apache-HttpClient/4.5.11 (Java/1.8.0_231)
EDIT: when you have un-conventional URL-s the general recommendation in Karate is to use only the url
(don't use path
): https://stackoverflow.com/a/53638335/143475