是否可以将空手道与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"));
}
空手道的0.7.0.RC4版本支持"后"钩子。
有关详细信息,请参阅此示例:hooks.feature
因此,使用karate.info
解决空手道的结果。如何称呼TestRail取决于您。