我正在执行下面的代码作为黄瓜步骤。测试用例 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。”)
我究竟做错了什么?我已经研究过这个问题并没有解决它请指教....