mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 20:05:51 +00:00
19 lines
675 B
TypeScript
19 lines
675 B
TypeScript
import { expect, test as setup } from '@playwright/test';
|
|
|
|
const adminFile = 'playwright/.auth/admin.json';
|
|
|
|
// 保存登录状态,避免每次都要登录
|
|
setup('admin', async ({ page }) => {
|
|
await page.goto('/');
|
|
await page.getByPlaceholder('Username/Email').click();
|
|
await page.getByPlaceholder('Username/Email').fill('admin@nocobase.com');
|
|
await page.getByPlaceholder('Password').click();
|
|
await page.getByPlaceholder('Password').fill('admin123');
|
|
await page.getByRole('button', { name: 'Sign in' }).click();
|
|
|
|
await expect(page.getByText('Super Admin')).toBeVisible();
|
|
|
|
// 保存登录状态
|
|
await page.context().storageState({ path: adminFile });
|
|
});
|