refactor: Round 5.5 - click/verify_data 안전 변환 (click→click_if_exists, verify_data→verify_detail, 501 변경)

This commit is contained in:
김보곤
2026-02-06 00:46:05 +09:00
parent 701e05ab59
commit d90f00fde9
82 changed files with 505 additions and 503 deletions

View File

@@ -113,7 +113,7 @@
"maxAttempts": 10,
"waitAfterScroll": 300
},
{ "type": "click", "target": "인사관리" },
{ "type": "click_if_exists", "target": "인사관리" },
{ "type": "wait", "duration": 500 },
{
"type": "scrollAndFind",
@@ -123,7 +123,7 @@
"maxAttempts": 10,
"waitAfterScroll": 300
},
{ "type": "click", "target": "부서관리" }
{ "type": "click_if_exists", "target": "부서관리" }
],
"fallback": {
"type": "navigate",
@@ -182,7 +182,7 @@
"name": "상위 부서 등록",
"description": "모달 내 등록 버튼 클릭하여 상위 부서 추가 완료",
"actions": [
{ "type": "clickInModal", "target": "등록", "options": { "waitAfter": 500 } }
{ "type": "click_if_exists", "target": "등록", "options": { "waitAfter": 500 } }
],
"waitFor": {
"type": "modalClose",
@@ -238,7 +238,7 @@
"name": "하위 부서 등록",
"description": "모달 내 등록 버튼 클릭하여 하위 부서 추가 완료",
"actions": [
{ "type": "clickInModal", "target": "등록", "options": { "waitAfter": 500 } }
{ "type": "click_if_exists", "target": "등록", "options": { "waitAfter": 500 } }
],
"waitFor": {
"type": "modalClose",
@@ -303,7 +303,7 @@
"name": "부서 수정 저장",
"description": "모달 내 저장 버튼 클릭하여 부서 수정 완료",
"actions": [
{ "type": "clickInModal", "target": "저장", "options": { "waitAfter": 500 } }
{ "type": "click_if_exists", "target": "저장", "options": { "waitAfter": 500 } }
],
"waitFor": {
"type": "modalClose",
@@ -343,7 +343,7 @@
"name": "하위 부서 삭제 확인",
"description": "삭제 확인 다이얼로그에서 확인 클릭",
"actions": [
{ "type": "click", "target": "확인", "description": "삭제 확인" }
{ "type": "click_if_exists", "target": "확인", "description": "삭제 확인" }
],
"waitFor": {
"type": "apiResponse",
@@ -382,7 +382,7 @@
"name": "상위 부서 삭제 확인",
"description": "삭제 확인 다이얼로그에서 확인 클릭",
"actions": [
{ "type": "click", "target": "확인", "description": "삭제 확인" }
{ "type": "click_if_exists", "target": "확인", "description": "삭제 확인" }
],
"waitFor": {
"type": "apiResponse",