fix: CRUD 시나리오 품질 강화 - DELETE/UPDATE/CREATE 액션 수정 (14파일, 42건)

Phase 1 품질 감사 수정:
- DELETE: verify_element → click + click_dialog_confirm (실제 삭제 실행)
- UPDATE: click_if_exists → fill + value (실제 데이터 수정)
- CREATE: click_if_exists → fill_form (fields 배열 정상 처리)

대상: accounting-*, sales-*, quality-inspection, material-receiving,
      hr-vacation, production-work-*, settings-work-schedule

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-11 16:09:31 +09:00
parent 24e5bba1ee
commit 39ce0828e8
14 changed files with 248 additions and 114 deletions

View File

@@ -122,7 +122,7 @@
"id": 9,
"phase": "CREATE",
"name": "[CREATE] 작업지시 정보 입력",
"action": "click_if_exists",
"action": "fill_form",
"fields": [
{
"name": "작업지시번호",
@@ -239,15 +239,17 @@
"id": 17,
"phase": "UPDATE",
"name": "[UPDATE] 수량 수정",
"action": "click_if_exists",
"target": "input[name*='quantity'], input[placeholder*='수량']"
"action": "fill",
"target": "input[name*='quantity'], input[placeholder*='수량']",
"value": "600"
},
{
"id": 18,
"phase": "UPDATE",
"name": "[UPDATE] 메모 수정",
"action": "click_if_exists",
"target": "textarea[name*='memo'], input[placeholder*='메모']"
"action": "fill",
"target": "textarea[name*='memo'], input[placeholder*='메모']",
"value": "E2E 수정된 작업지시 메모"
},
{
"id": 19,