1

我正在执行下面的代码作为黄瓜步骤。测试用例 ID 是 C70。我尝试了一个运行 ID,它给出了同样的错误。

The code and error are below - 
-----------------
require 'testrail-ruby'
client = TestRail::APIClient.new('https://xxxx.testrail.net')
client.user = 'xxxxxxxxxx.com'
client.password = 'xxxxxx'
r = client.send_post(
'add_result_for_case/C270',
{ :status_id => 1, :comment => 'This test worked fine!' }
)
puts r

错误:

TestRail API 返回 HTTP 400(“字段:run_id 不是有效 ID。”)

我究竟做错了什么?我已经研究过这个问题并没有解决它请指教....

4

1 回答 1

1

我发现了我的问题。我应该使用完整的测试用例 ID。运行实际测试用例时找到的 ID。这个问题得到了解决。

于 2018-01-12T18:43:47.410 回答