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

@@ -88,7 +88,7 @@
{
"id": 7,
"name": "로그인 실패 테스트 - 빈 필드",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"expected": "유효성 검사 에러 또는 로그인 실패 메시지"
},
@@ -111,7 +111,7 @@
{
"id": 10,
"name": "잘못된 비밀번호로 로그인 시도",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"expected": "로그인 실패 에러 메시지 표시",
"verify": {
@@ -137,7 +137,7 @@
{
"id": 13,
"name": "필수 검증 #2: 로그인 버튼 클릭",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"verify": {
"url_should_change": true,
@@ -217,7 +217,7 @@
"actions": [
{ "type": "fill", "target": "usernameInput", "value": "TestUser5" },
{ "type": "fill", "target": "passwordInput", "value": "password123!" },
{ "type": "click", "target": "loginButton" }
{ "type": "click_if_exists", "target": "loginButton" }
],
"expected": "재로그인 성공"
},