有没有一种方法可以像路径参数一样读取服务模拟中的查询参数?
谢谢您的帮助!
答案 0 :(得分:2)
是的。阅读文档:https://github.com/intuit/karate/tree/master/karate-netty#paramValue
Scenario: pathMatches('/greeting') && paramValue('name') != null
* def content = 'Hello ' + paramValue('name') + '!'
* def response = { id: '#(nextId())', content: '#(content)' }