1
0
forked from baron/baron-sso

adminfront-tests 검색 placeholder 기대값을 현재 UI 문구에 맞게 수정

This commit is contained in:
2026-06-05 21:00:40 +09:00
parent c9cf7d6c67
commit 9478944197
2 changed files with 5 additions and 5 deletions

View File

@@ -602,11 +602,11 @@ test.describe("User Management", () => {
await expect(page.getByText("Load User 0")).toBeVisible();
const initialMs = performance.now() - initialStartedAt;
const searchInput = page.getByPlaceholder("이름 또는 이메일 검색...");
const searchInput = page.getByPlaceholder("이름 또는 이메일 검색");
await searchInput.fill("Load User 19999");
const searchMs = await page.evaluate(async () => {
const input = Array.from(document.querySelectorAll("input")).find(
(candidate) => candidate.placeholder === "이름 또는 이메일 검색...",
(candidate) => candidate.placeholder === "이름 또는 이메일 검색",
);
if (!input) {