1

是否可以将空手道与 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"));


    }
4

1 回答 1

1

空手道的 0.7.0.RC4 版本支持 'after' 钩子。

有关详细信息,请参阅此示例:hooks.feature

因此,从空手道获得结果可以使用karate.info. 如何调用 TestRail 取决于您。

于 2018-01-18T04:49:28.827 回答