mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-18 13:34:06 +01:00
27 lines
975 B
TypeScript
27 lines
975 B
TypeScript
import { Page } from '@playwright/test';
|
|
|
|
export const login = async (page: Page, role: 'user' | 'admin') => {
|
|
const email = role === 'user' ? process.env.NEXT_PUBLIC_TEST_USER_EMAIL : process.env.NEXT_PUBLIC_ADMIN_EMAIL;
|
|
const password = role === 'user' ? process.env.NEXT_PUBLIC_TEST_USER_PASSWORD : process.env.NEXT_PUBLIC_ADMIN_PASSWORD;
|
|
|
|
if (!email || !password) {
|
|
throw new Error(`${role === 'user' ? 'User' : 'Admin'} credentials must be set`);
|
|
}
|
|
|
|
await page.goto('/');
|
|
const isLoginPage = await page.locator('id=login').isVisible();
|
|
if (!isLoginPage) {
|
|
console.log(`Logging out current session...`);
|
|
await page.evaluate(() => {
|
|
localStorage.clear();
|
|
sessionStorage.clear();
|
|
});
|
|
}
|
|
|
|
console.log(`Logging in as ${role}...`);
|
|
await page.goto('/auth');
|
|
await page.fill('id=email', email);
|
|
await page.fill('id=password', password);
|
|
await page.click('id=login');
|
|
};
|