revert: Round 5 롤백 - 브라우저 크래시 문제로 복원

This commit is contained in:
김보곤
2026-02-06 00:39:28 +09:00
parent d23454d573
commit 701e05ab59
83 changed files with 1262 additions and 2611 deletions

View File

@@ -74,7 +74,7 @@
"id": 5,
"phase": "CREATE",
"name": "[CREATE] 팝업 등록 버튼 클릭",
"action": "click_if_exists",
"action": "click",
"target": "button:has-text('등록'), button:has-text('추가'), button:has-text('신규')",
"expected": {
"modal_open": true
@@ -84,7 +84,7 @@
"id": 6,
"phase": "CREATE",
"name": "[CREATE] 팝업 제목 입력",
"action": "click_if_exists",
"action": "fill",
"target": "input[name*='title'], input[placeholder*='제목']",
"value": "E2E_TEST_팝업_{timestamp}",
"clear": true
@@ -93,7 +93,7 @@
"id": 7,
"phase": "CREATE",
"name": "[CREATE] 팝업 내용 입력",
"action": "click_if_exists",
"action": "fill",
"target": "textarea[name*='content'], textarea[placeholder*='내용']",
"value": "E2E 자동화 테스트용 팝업입니다.",
"clear": true
@@ -102,7 +102,7 @@
"id": 8,
"phase": "CREATE",
"name": "[CREATE] 시작일 설정",
"action": "click_if_exists",
"action": "click",
"target": "input[name*='start'], input[placeholder*='시작']",
"expected": "시작일 선택 가능"
},
@@ -110,7 +110,7 @@
"id": 9,
"phase": "CREATE",
"name": "[CREATE] 종료일 설정",
"action": "click_if_exists",
"action": "click",
"target": "input[name*='end'], input[placeholder*='종료']",
"expected": "종료일 선택 가능"
},
@@ -118,7 +118,7 @@
"id": 10,
"phase": "CREATE",
"name": "[CREATE] 필수 검증 #2: 팝업 저장",
"action": "click_if_exists",
"action": "click",
"target": "button:has-text('저장'), button:has-text('등록'), button:has-text('확인')",
"verify": {
"url_maintained": true,
@@ -132,7 +132,7 @@
"id": 11,
"phase": "READ",
"name": "[READ] 등록된 팝업 검색",
"action": "click_if_exists",
"action": "fill",
"target": "input[type='search'], input[placeholder*='검색']",
"value": "E2E_TEST_팝업",
"submit": true
@@ -151,7 +151,7 @@
"id": 13,
"phase": "READ",
"name": "[READ] 팝업 상세/편집 클릭",
"action": "click_if_exists",
"action": "click",
"target": "table tbody tr:has-text('E2E_TEST_팝업')",
"expected": {
"detail_view": true
@@ -161,7 +161,7 @@
"id": 14,
"phase": "UPDATE",
"name": "[UPDATE] 팝업 수정 모드",
"action": "click_if_exists",
"action": "click",
"target": "button:has-text('수정'), button:has-text('편집')",
"expected": {
"edit_mode": true
@@ -171,7 +171,7 @@
"id": 15,
"phase": "UPDATE",
"name": "[UPDATE] 팝업 제목 변경",
"action": "click_if_exists",
"action": "fill",
"target": "input[name*='title'], input[placeholder*='제목']",
"value": "E2E_TEST_팝업_수정",
"clear": true
@@ -180,7 +180,7 @@
"id": 16,
"phase": "UPDATE",
"name": "[UPDATE] 변경 저장",
"action": "click_if_exists",
"action": "click",
"target": "button:has-text('저장'), button:has-text('확인')",
"verify": {
"api_call": "PUT /api/v1/settings/popups",
@@ -192,7 +192,7 @@
"id": 17,
"phase": "DELETE",
"name": "[DELETE] 팝업 삭제",
"action": "click_if_exists",
"action": "click",
"target": "button:has-text('삭제'), button:has-text('제거')",
"expected": {
"confirm_dialog": true
@@ -202,7 +202,7 @@
"id": 18,
"phase": "DELETE",
"name": "[DELETE] 삭제 확인",
"action": "click_if_exists",
"action": "click",
"target": "[role='alertdialog'] button:has-text('확인'), [role='dialog'] button:has-text('삭제')",
"verify": {
"api_call": "DELETE /api/v1/settings/popups",