Files
sam-scenarios/perf-material-receiving.json
김보곤 b9ff143c8d feat: Phase 3 시나리오 60개 추가 (워크플로우 5, 성능 20, 엣지케이스 15, 접근성 20)
- workflow-*: 다중 모듈 비즈니스 워크플로우 5종
- perf-*: 20개 주요 페이지 성능 측정 시나리오
- edge-*: 폼 검증, 경계값, 특수문자, 빠른 클릭 등 15종
- a11y-*: WCAG 2.1 AA 접근성 검사 20개 페이지
2026-02-13 13:14:10 +09:00

56 lines
1.1 KiB
JSON

{
"id": "perf-material-receiving",
"name": "성능 측정: 자재관리 > 입고관리",
"version": "1.0.0",
"auth": {
"role": "admin"
},
"menuNavigation": {
"level1": "자재관리",
"level2": "입고관리"
},
"screenshotPolicy": {
"captureOnFail": true,
"captureOnPass": false
},
"steps": [
{
"id": 1,
"name": "페이지 로드 대기",
"action": "wait",
"timeout": 3000
},
{
"id": 2,
"name": "테이블 로드 대기",
"action": "wait_for_table",
"timeout": 5000
},
{
"id": 3,
"name": "페이지 성능 측정",
"action": "measure_performance",
"timeout": 10000,
"phase": "PERF_MEASURE"
},
{
"id": 4,
"name": "API 성능 측정",
"action": "measure_api_performance",
"timeout": 10000,
"phase": "API_PERF"
},
{
"id": 5,
"name": "성능 기준 검증",
"action": "assert_performance",
"thresholds": {
"pageLoad": 3000,
"apiAvg": 2000,
"domNodes": 5000
},
"timeout": 5000,
"phase": "PERF_ASSERT"
}
]
}