我开始使用空手道进行测试,但是当我使用“ path”关键字时,会收到“ http请求失败:空”错误。
使用以下方案时,它可以工作:
Feature: items
Scenario: Testing /items response status
Given url appBaseUrl + '/items'
And param param1 = 1
And param param2 = 10
When method get
Then status 200
但是当我尝试像下面的代码那样使用“ path”关键字时,最终会收到错误消息
Feature: items
Scenario: Testing /items response status
Given url appBaseUrl
And path 'items'
And param param1 = 1
And param param2 = 10
When method get
Then status 200
items.feature:8 - null
com.intuit.karate.exception.KarateException: items.feature:8 - null
at ✽.When method GET (items.feature:8)
我不知道自己在做什么错。还有其他需要完成的步骤吗?
答案 0 :(得分:1)
必须进行其他操作,因为这应该起作用。尝试以下示例:
* def appBaseUrl = 'http://httpbin.org/anything'
Given url appBaseUrl
And path 'items'
And param param1 = 1
And param param2 = 10
When method get
Then status 200
在我的系统上工作正常。
所以我建议您遵循以下过程:https://github.com/intuit/karate/wiki/How-to-Submit-an-Issue
编辑:这确实是一个错误:https://github.com/intuit/karate/issues/760-使用karate-jersey
是一种解决方法,直到修复为止