ui测试前后端问题修复

This commit is contained in:
2025-05-27 15:14:40 +08:00
parent 64b57fc3ec
commit a3c140db47
4 changed files with 202 additions and 164 deletions

View File

@@ -52,5 +52,5 @@ public class AssertionQO {
private String isFailedAbort;
/**是否禁用 0否 1是*/
private String isDisabled;
private Integer isDisabled;
}

View File

@@ -41,7 +41,7 @@ public class DataExtractionQO {
private String elementAttribute;
/**是否禁用 0否 1是 */
private String isDisabled;
private Integer isDisabled;
}

View File

@@ -1006,7 +1006,7 @@ public class UiSceneStepsServiceImpl implements IUiSceneStepsService {
*/
private List<UiHighSettingVO> extractafterSetting(List<UiHighSettingVO> settings) {
return settings.stream()
.filter(e -> "2".equals(e.getSettingType()) &&0 == e.getIsDisabled())
.filter(e -> "2".equals(e.getSettingType()) && 1 == e.getIsDisabled())
.collect(Collectors.toList()); // 返回默认设置
}