我正在使用 ruby Cucumber,我正在更新 Testrail 上的测试结果。我可以毫无问题地更新一个结果。我的问题是,根据下面的代码,如何使用 add_result 方法更新多个测试运行?
require 'testrail-ruby'
client = TestRail::APIClient.new('https:XXXXXt/')
client.user = 'XXXXXXXXXXXX'
client.password = 'XXXXXXXXX'
r = client.send_post(
'add_result/483750',
{ :status_id => 1, :comment => 'This test worked fine!' }
)
#puts r
end