Refine admin login flow and verification harness
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m21s

This commit is contained in:
2026-07-07 14:38:30 +09:00
parent b7cb442937
commit 35842b6765
60 changed files with 1043 additions and 495 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
import { test } from '@playwright/test';
test('check dashboard metrics', async ({ page }) => {
const baseUrl = 'http://178.104.200.7/taxbaik';
const baseUrl = 'https://www.taxbaik.com/taxbaik';
// Login
await page.goto(`${baseUrl}/admin/login`);
await page.fill('input[placeholder="사용자명"]', 'test_admin');
await page.fill('input[placeholder="비밀번호"]', 'TestAdmin@123456');
await page.fill('input[placeholder="비밀번호"]', 'admin123');
await page.click('button[type="submit"]');
await page.waitForURL(/admin\/dashboard/);