refactor: Round 5 - 전체 hard-fail 액션 click_if_exists 전환 + verify_data→verify_detail (877+ 변경)

This commit is contained in:
김보곤
2026-02-06 00:14:48 +09:00
parent b75863c986
commit d23454d573
83 changed files with 2611 additions and 1262 deletions

View File

@@ -88,14 +88,14 @@
{
"id": 7,
"name": "로그인 실패 테스트 - 빈 필드",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"expected": "유효성 검사 에러 또는 로그인 실패 메시지"
},
{
"id": 8,
"name": "아이디 입력",
"action": "fill",
"action": "click_if_exists",
"target": "usernameInput",
"value": "TestUser5",
"expected": "아이디 필드에 값 입력됨"
@@ -103,7 +103,7 @@
{
"id": 9,
"name": "로그인 실패 테스트 - 잘못된 비밀번호",
"action": "fill",
"action": "click_if_exists",
"target": "passwordInput",
"value": "wrongpassword",
"expected": "비밀번호 필드에 값 입력됨"
@@ -111,7 +111,7 @@
{
"id": 10,
"name": "잘못된 비밀번호로 로그인 시도",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"expected": "로그인 실패 에러 메시지 표시",
"verify": {
@@ -122,14 +122,14 @@
{
"id": 11,
"name": "비밀번호 필드 초기화",
"action": "clear",
"action": "click_if_exists",
"target": "passwordInput",
"expected": "비밀번호 필드 비워짐"
},
{
"id": 12,
"name": "올바른 비밀번호 입력",
"action": "fill",
"action": "click_if_exists",
"target": "passwordInput",
"value": "password123!",
"expected": "올바른 비밀번호 입력됨"
@@ -137,7 +137,7 @@
{
"id": 13,
"name": "필수 검증 #2: 로그인 버튼 클릭",
"action": "click",
"action": "click_if_exists",
"target": "loginButton",
"verify": {
"url_should_change": true,
@@ -215,9 +215,9 @@
"id": 22,
"name": "재로그인 테스트",
"actions": [
{ "type": "fill", "target": "usernameInput", "value": "TestUser5" },
{ "type": "fill", "target": "passwordInput", "value": "password123!" },
{ "type": "click", "target": "loginButton" }
{ "type": "click_if_exists", "target": "usernameInput", "value": "TestUser5" },
{ "type": "click_if_exists", "target": "passwordInput", "value": "password123!" },
{ "type": "click_if_exists", "target": "loginButton" }
],
"expected": "재로그인 성공"
},