1
0
forked from baron/baron-sso

adminfront, test: 네이버웍스 연동 E2E 테스트 내 컬럼 설정 버튼 클릭을 브라우저 네이티브 DOM 클릭(.evaluate)으로 보완 (#1183)

This commit is contained in:
2026-06-16 18:59:38 +09:00
parent c76148e852
commit b0dbd7b32f

View File

@@ -865,7 +865,7 @@ test.describe("Worksmobile tenant management", () => {
.getByRole("heading", { name: "구성원" }) .getByRole("heading", { name: "구성원" })
.locator("xpath=ancestor::div[contains(@class, 'space-y-2')][1]") .locator("xpath=ancestor::div[contains(@class, 'space-y-2')][1]")
.getByRole("button", { name: "컬럼 설정" }); .getByRole("button", { name: "컬럼 설정" });
await userColumnButton.click({ force: true }); await userColumnButton.evaluate((el) => (el as HTMLButtonElement).click());
const settingsDialog = page.getByRole("dialog"); const settingsDialog = page.getByRole("dialog");
await expect(settingsDialog.getByText("구성원 컬럼 설정")).toBeVisible(); await expect(settingsDialog.getByText("구성원 컬럼 설정")).toBeVisible();