是否可以将空手道与 testrail 结合起来?我正在使用下面的代码来调用 testrail,但不确定如何将结果发送到每个场景的 testrail。
@AfterClass
public static void after() throws Exception
{
APIClient client = new APIClient("http://test.com/testrail");
client.setUser("test");
client.setPassword("Password1");
JSONObject c = (JSONObject) client.sendGet("/get_case/5905");
System.out.println(c.get("title"));
}