gpt4 book ai didi

java - 获取错误 http 请求失败 : null when using path in karate

转载 作者:行者123 更新时间:2023-11-30 10:04:13 26 4
gpt4 key购买 nike

我开始使用 Karate 进行测试,但是当我使用“路径”关键字时,我收到“http 请求失败:null”错误。

当使用以下场景时,它有效:

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

但是当我尝试在下面的代码中使用“路径”关键字时,我最终得到了错误

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)

我不知道我做错了什么。是否有一些额外的步骤需要完成而我遗漏了?

最佳答案

一定有其他事情发生,因为这应该有效。例如试试这个:

* 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 是一种解决方法

关于java - 获取错误 http 请求失败 : null when using path in karate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56006685/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com