ALM通过测试集获取执行流条件

来源:互联网 发布:安卓framework源码 编辑:程序博客网 时间:2024/06/02 09:41

VBS脚本:

待补充


Python脚本:

    def getConditions(self, theTestSet):
        condFact = theTestSet.ConditionFactory
        condlst = condFact.NewList("")
        conditions = list()
        for cond in condlst:
            conditions.append((cond.ID, cond.Description, cond.Source, cond.Target, cond.Value))
        
        return conditions

0 0