From f028aeb716d13b3b8a0e2d7765a5192bce28bc4a Mon Sep 17 00:00:00 2001 From: kyy Date: Fri, 15 May 2026 19:58:22 +0900 Subject: [PATCH] =?UTF-8?q?devfront=20=EC=BD=94=EB=93=9C=20=EC=B2=B4?= =?UTF-8?q?=ED=81=AC=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- devfront/tests/devfront-audit.spec.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/devfront/tests/devfront-audit.spec.ts b/devfront/tests/devfront-audit.spec.ts index 9158fa4e..fdef7488 100644 --- a/devfront/tests/devfront-audit.spec.ts +++ b/devfront/tests/devfront-audit.spec.ts @@ -72,13 +72,10 @@ test.describe("DevFront audit logs", () => { await page.goto("/audit-logs"); await expect(page.getByText("UPDATE_CLIENT")).toBeVisible(); + const filterInputs = page.locator("form input"); - await page - .getByPlaceholder(/Client ID로 필터|Filter by Client ID/i) - .fill("client-audit"); - await page - .getByPlaceholder(/액션으로 필터|Filter by Action/i) - .fill("ROTATE_SECRET"); + await filterInputs.nth(0).fill("client-audit"); + await filterInputs.nth(1).fill("ROTATE_SECRET"); await page.getByRole("button", { name: /더 보기|Load more/i }).click(); await expect(page.getByText("ROTATE_SECRET")).toBeVisible();