refactor: 초정밀 시나리오 강화 (1060→1381 steps, 68/68 PASS)

This commit is contained in:
김보곤
2026-02-09 15:05:03 +09:00
parent 15ad1d9758
commit f5dffe2ee7
135 changed files with 23040 additions and 1652 deletions

View File

@@ -0,0 +1,83 @@
{
"id": "shipment-management",
"name": "출고관리 테스트",
"screenshotPolicy": {
"onErrorOnly": true,
"captureOn": ["error", "fail", "timeout", "404", "500", "blocked"]
},
"description": "출고관리 > 출고관리 목록/상세 기능 검증",
"baseUrl": "https://dev.codebridge-x.com",
"menuNavigation": {
"level1": "출고관리",
"level2": "출고관리",
"expectedUrl": "/outbound/shipments",
"searchWithinParent": true,
"closeOtherMenus": true
},
"auth": {
"username": "TestUser5",
"password": "password123!"
},
"steps": [
{
"id": 1,
"name": "메뉴 진입: 출고관리 > 출고관리",
"action": "menu_navigate",
"level1": "출고관리",
"level2": "출고관리",
"expected": { "url_contains": "/outbound" }
},
{
"id": 2,
"name": "목업 감지",
"action": "verify_not_mockup"
},
{
"id": 3,
"name": "출고관리 페이지 확인",
"action": "verify_detail",
"checks": ["visible_text:출고"]
},
{
"id": 4,
"name": "UI 요소 확인",
"action": "verify_detail",
"checks": ["visible_text:관리"]
},
{
"id": 5,
"name": "검색 입력 시도",
"action": "click_if_exists",
"target": "input[type='search'], input[placeholder*='검색'], input[placeholder*='조회'], [class*='search'] input"
},
{
"id": 6,
"name": "대기",
"action": "wait",
"duration": 1000
},
{
"id": 7,
"name": "행 클릭 시도",
"action": "click_if_exists",
"target": "table tbody tr, [role='row']:not(:first-child), [class*='list'] [class*='item']"
},
{
"id": 8,
"name": "상세 확인",
"action": "verify_detail",
"checks": ["visible_text:출고"]
},
{
"id": 9,
"name": "모달 닫기",
"action": "close_modal_if_open"
},
{
"id": 10,
"name": "최종 확인",
"action": "verify_detail",
"checks": ["visible_text:출고"]
}
]
}