diff --git a/frontend/src/business/components/track/plan/view/comonents/TestPlanTestCaseEdit.vue b/frontend/src/business/components/track/plan/view/comonents/TestPlanTestCaseEdit.vue index f4283bdbac..481bf7cbfb 100644 --- a/frontend/src/business/components/track/plan/view/comonents/TestPlanTestCaseEdit.vue +++ b/frontend/src/business/components/track/plan/view/comonents/TestPlanTestCaseEdit.vue @@ -282,15 +282,18 @@ + this.$t('test_track.length_less_than') + '300'); return; } - if (!result.actualResult) { - this.$warning(this.testCase.steptResults[i].desc + this.$t('test_track.actual_result') - ); - return; - } - if (!result.executeResult) { - this.$warning(this.testCase.steptResults[i].desc + this.$t('test_track.execution_result') - ); - return; + + if (this.testCase.method != 'auto') { + if (!result.actualResult) { + this.$warning(this.testCase.steptResults[i].desc + this.$t('test_track.actual_result') + ); + return; + } + if (!result.executeResult) { + this.$warning(this.testCase.steptResults[i].desc + this.$t('test_track.execution_result') + ); + return; + } }