I have recently learnt about Karate and it's awesome experience working on this. I'm stuck at one problem and looked out for a solution from various websites but it didn't help
Scenario: Given url "https://test.payu.in/_payment" And form field surl = '/payu/web-response/17703721?appVersion=null&clientId=web-client/1.0' When method POST Then status 302
When we hit the above request the form field value is getting encoded as 'surl=%2Fpayu%2Fweb-response%2F17703721%3FappVersion%3Dnull%26clientId%3Dweb-client%2F1.0' due to this request is failing
If you can provide me the solution it would be really helpfull Solutions tried : java.net.URLDecoder.decode('/payu/web-response/17703721?appVersion=null&clientId=web-client/1.0', 'UTF-8')
But no luck