We have recently introduced the possibility to sign up on Twenty cloud without having to input a credit card which makes the demo.twenty.com useless. Deprecating it!
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { test as base, expect } from '@playwright/test';
|
|
import path from 'path';
|
|
import { LoginPage } from '../lib/pom/loginPage';
|
|
|
|
// fixture
|
|
const test = base.extend<{ loginPage: LoginPage }>({
|
|
loginPage: async ({ page }, use) => {
|
|
const loginPage = new LoginPage(page);
|
|
await use(loginPage);
|
|
},
|
|
});
|
|
|
|
test('Login test', async ({ loginPage, page }) => {
|
|
await test.step('Navigated to login page', async () => {
|
|
await page.goto('/');
|
|
});
|
|
await test.step(
|
|
'Logging in '.concat(page.url(), ' as ', process.env.DEFAULT_LOGIN),
|
|
async () => {
|
|
await page.waitForLoadState('networkidle');
|
|
if (
|
|
page.url().includes('app.twenty-next.com') ||
|
|
!page.url().includes('app.localhost:3001')
|
|
) {
|
|
await loginPage.clickLoginWithEmail();
|
|
}
|
|
await loginPage.typeEmail(process.env.DEFAULT_LOGIN);
|
|
await loginPage.clickContinueButton();
|
|
await loginPage.typePassword(process.env.DEFAULT_PASSWORD);
|
|
await page.waitForLoadState('networkidle');
|
|
await loginPage.clickSignInButton();
|
|
await expect(page.getByText(/Welcome to .+/)).not.toBeVisible();
|
|
},
|
|
);
|
|
|
|
await test.step('Saved auth state', async () => {
|
|
await page.context().storageState({
|
|
path: path.resolve(__dirname, '..', '.auth', 'user.json'),
|
|
});
|
|
process.env.LINK = page.url();
|
|
});
|
|
});
|