如何使用API​​从KIWI TCMS中导出测试用例?

时间:2019-06-17 08:48:39

标签: kiwi-tcms

我正在公司中解决如何将已保存的测试用例从猕猴桃导出到xls文件。我刚刚找到了如何导入数据(https://gist.github.com/atodorov/f5aed028b6f254d97bcaf93453abe8d2)。

您不是在这里解决了类似的问题吗,如何从猕猴桃中导出测试用例?一个具体的例子可以帮助我..谢谢。

1 个答案:

答案 0 :(得分:0)

https://tcms-api.readthedocs.io/en/latest/modules/tcms_api.html?highlight=rpc_client%20exec%20testcase

from tcms_api import TCMS

rpc_client = TCMS()

for test_case in rpc_client.exec.TestCase.filter({'pk': 46490}):
    print(test_case)

与其打印test_case,不如通过一些python库将其保存到XLS中。