Files
sam-scenarios/perf-prod-item.json

56 lines
1.1 KiB
JSON
Raw Normal View History

{
"id": "perf-prod-item",
"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"
}
]
}