fix(场景执行): 修复外层控制器的场景执行时全局前后置脚本不执行的问题
--bug=1009786 --user=宋天阳 【接口测试】github#9572,如果场景最外层如果是控制器(比如 循环控制器),会导致“所有请求步骤前执行”的全局脚本 失效 https://www.tapd.cn/55049933/s/1095864
This commit is contained in:
parent
61d4f341bb
commit
1edf880672
|
@ -147,9 +147,17 @@ public class MsThreadGroup extends MsTestElement {
|
|||
if (StringUtils.isNotEmpty(projectId)) {
|
||||
break;
|
||||
}
|
||||
}else {
|
||||
projectId = itemEl.getProjectId();
|
||||
if (StringUtils.isNotEmpty(projectId)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(StringUtils.isEmpty(projectId)){
|
||||
projectId = el.getProjectId();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue