在我的Rally项目中,我具有以下测试文件夹结构:

TestFolderGrandGrandParent1
        TestFolderGrandParent1
                 TestFolderParent1
                      testcase1,testcase2 ..... testcase5
                      TestFolderChild1
                          testcase10,testcase11 ..... testcase15
                      TestFolderChild2
                          testcase20,testcase21 ..... testcase25
                      TestFolderChild3
                          TestFolderGrandChild1
                             testcase20,testcase21 ..... testcase25


如果我只有2级关系,例如父级,子级(see shared link),我已经找到了如何获取测试用例的方法。
当前,我正在寻找一种方法,通过了解第一个文件夹来获取整个树,以使所有基础文件夹都可以遍历每个文件夹。

最佳答案

不幸的是,没有有效的方法可以做到这一点。您必须查询顶级测试文件夹,然后递归遍历树,在每个级别获取子级。

10-05 19:57