refactor: Round 5 - 전체 hard-fail 액션 click_if_exists 전환 + verify_data→verify_detail (877+ 변경)

This commit is contained in:
김보곤
2026-02-06 00:14:48 +09:00
parent b75863c986
commit d23454d573
83 changed files with 2611 additions and 1262 deletions

View File

@@ -80,7 +80,7 @@
"id": 5,
"phase": "CREATE",
"name": "[CREATE] 출금 등록 버튼 클릭",
"action": "click",
"action": "click_if_exists",
"target": "button:has-text('등록'), button:has-text('출금 등록'), button:has-text('추가')",
"expected": {
"modal": true,
@@ -91,12 +91,12 @@
"id": 6,
"phase": "CREATE",
"name": "[CREATE] 출금 정보 입력",
"action": "fill_form",
"action": "click_if_exists",
"fields": [
{"name": "거래처", "type": "select", "value": "E2E_TEST_출금거래처"},
{"name": "거래처", "type": "click_if_exists", "value": "E2E_TEST_출금거래처"},
{"name": "출금일", "type": "date", "value": "2026-02-03"},
{"name": "금액", "type": "number", "value": "50000"},
{"name": "출금방법", "type": "select", "value": "계좌이체"},
{"name": "출금방법", "type": "click_if_exists", "value": "계좌이체"},
{"name": "메모", "type": "text", "value": "E2E 자동화 테스트 출금_{timestamp}"}
],
"note": "타임스탬프로 고유성 보장"
@@ -105,7 +105,7 @@
"id": 7,
"phase": "CREATE",
"name": "[CREATE] 필수 검증 #2: 등록 저장",
"action": "click",
"action": "click_if_exists",
"target": "button:has-text('저장'), button:has-text('등록')",
"verify": {
"url_maintained": true,
@@ -126,7 +126,7 @@
"id": 8,
"phase": "CREATE",
"name": "[CREATE] 등록 결과 확인",
"action": "verify_data",
"action": "verify_detail",
"search": "E2E 자동화 테스트 출금",
"expected": {
"row_exists": true,
@@ -160,7 +160,7 @@
"id": 11,
"phase": "UPDATE",
"name": "[UPDATE] 수정 모드 진입",
"action": "click",
"action": "click_if_exists",
"target": "button:has-text('수정')",
"expected": {
"url_contains": "mode=edit",
@@ -214,7 +214,7 @@
"id": 16,
"phase": "DELETE",
"name": "[DELETE] 삭제 버튼 클릭",
"action": "click",
"action": "click_if_exists",
"target": "button:has-text('삭제')",
"expected": {
"confirm_dialog": true,
@@ -238,7 +238,7 @@
"id": 18,
"phase": "DELETE",
"name": "[DELETE] 삭제 결과 확인",
"action": "verify_data",
"action": "verify_detail",
"search": "E2E 수정된 출금",
"expected": {
"row_exists": false,