我正在使用空手道 0.6.1版本,并面临get
查询参数请求的问题。
Scenario Outline: Verify the response Data with account details when there are filter values are provided with wildcard
Given params { <paramName>: <paramValue> }
When method get
Then status 200
Examples:
| paramName | paramValue |
| Name | 'Volvo%' |
| Name | 'test data'|
在带有 queryparam 的请求 url 中变得像url?Name=Volvo%25
Andurl?Name=test+data
这是不正确的,我该如何解决。