Files
sam-scenarios/test-bills-minimal.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

29 lines
596 B
JSON

{
"id": "test-bills-minimal",
"name": "Test bills page minimal",
"menuNavigation": {
"level1": "회계관리",
"level2": "어음관리"
},
"steps": [
{
"id": 1,
"name": "Wait 1s",
"action": "wait",
"timeout": 1000
},
{
"id": 2,
"name": "Table load",
"action": "wait_for_table",
"timeout": 5000
},
{
"id": 3,
"name": "Check page",
"action": "evaluate",
"script": "(async()=>{return JSON.stringify({ok:true,url:location.href,title:document.title});})()",
"timeout": 5000
}
]
}