revert: Round 5 롤백 - 브라우저 크래시 문제로 복원
This commit is contained in:
@@ -80,7 +80,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_or_page": true,
|
||||
@@ -91,12 +91,12 @@
|
||||
"id": 6,
|
||||
"phase": "CREATE",
|
||||
"name": "[CREATE] 계좌 정보 입력",
|
||||
"action": "click_if_exists",
|
||||
"action": "fill_form",
|
||||
"fields": [
|
||||
{"name": "은행명", "type": "click_if_exists", "value": "E2E테스트은행"},
|
||||
{"name": "은행명", "type": "select", "value": "E2E테스트은행"},
|
||||
{"name": "계좌번호", "type": "text", "value": "123-456-789012_{timestamp}"},
|
||||
{"name": "예금주", "type": "text", "value": "E2E_TEST_예금주"},
|
||||
{"name": "계좌유형", "type": "click_if_exists", "value": "보통예금"},
|
||||
{"name": "계좌유형", "type": "select", "value": "보통예금"},
|
||||
{"name": "메모", "type": "text", "value": "E2E 자동화 테스트 계좌_{timestamp}"}
|
||||
],
|
||||
"note": "타임스탬프로 고유성 보장"
|
||||
@@ -105,7 +105,7 @@
|
||||
"id": 7,
|
||||
"phase": "CREATE",
|
||||
"name": "[CREATE] 필수 검증 #2: 등록 저장",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "button:has-text('저장'), button:has-text('등록')",
|
||||
"verify": {
|
||||
"url_maintained": true,
|
||||
@@ -126,7 +126,7 @@
|
||||
"id": 8,
|
||||
"phase": "CREATE",
|
||||
"name": "[CREATE] 등록 결과 확인",
|
||||
"action": "verify_detail",
|
||||
"action": "verify_data",
|
||||
"search": "E2E_TEST_예금주",
|
||||
"expected": {
|
||||
"row_exists": true,
|
||||
@@ -137,7 +137,7 @@
|
||||
"id": 9,
|
||||
"phase": "READ",
|
||||
"name": "[READ] 계좌 상세 페이지 진입",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "table tbody tr:has-text('E2E_TEST')",
|
||||
"expected": {
|
||||
"url_contains": "/settings/bank",
|
||||
@@ -160,7 +160,7 @@
|
||||
"id": 11,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 수정 모드 진입",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "button:has-text('수정')",
|
||||
"expected": {
|
||||
"url_contains": "mode=edit",
|
||||
@@ -171,7 +171,7 @@
|
||||
"id": 12,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 예금주 수정",
|
||||
"action": "click_if_exists",
|
||||
"action": "fill",
|
||||
"target": "input[name*='holder'], input[placeholder*='예금주']",
|
||||
"value": "E2E_TEST_수정예금주",
|
||||
"clear": true
|
||||
@@ -180,7 +180,7 @@
|
||||
"id": 13,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 메모 수정",
|
||||
"action": "click_if_exists",
|
||||
"action": "fill",
|
||||
"target": "textarea[name*='memo'], input[placeholder*='메모']",
|
||||
"value": "E2E 수정된 계좌 메모_{timestamp}",
|
||||
"clear": true
|
||||
@@ -189,7 +189,7 @@
|
||||
"id": 14,
|
||||
"phase": "UPDATE",
|
||||
"name": "[UPDATE] 필수 검증 #2: 수정 저장",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "button:has-text('저장')",
|
||||
"verify": {
|
||||
"url_maintained": true,
|
||||
@@ -214,7 +214,7 @@
|
||||
"id": 16,
|
||||
"phase": "DELETE",
|
||||
"name": "[DELETE] 삭제 버튼 클릭",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "button:has-text('삭제')",
|
||||
"expected": {
|
||||
"confirm_dialog": true,
|
||||
@@ -225,7 +225,7 @@
|
||||
"id": 17,
|
||||
"phase": "DELETE",
|
||||
"name": "[DELETE] 필수 검증 #6: 삭제 확인",
|
||||
"action": "click_if_exists",
|
||||
"action": "click",
|
||||
"target": "button:has-text('확인'), button:has-text('삭제')",
|
||||
"verify": {
|
||||
"api_call": "DELETE /api/v1/bank-accounts/",
|
||||
@@ -238,7 +238,7 @@
|
||||
"id": 18,
|
||||
"phase": "DELETE",
|
||||
"name": "[DELETE] 삭제 결과 확인",
|
||||
"action": "verify_detail",
|
||||
"action": "verify_data",
|
||||
"search": "E2E_TEST_수정예금주",
|
||||
"expected": {
|
||||
"row_exists": false,
|
||||
|
||||
Reference in New Issue
Block a user