Scenario: https://github.com/twentyhq/twenty/issues/8469#issuecomment-2471420099 To launch this test, `yarn playwright test --project Authentication` must be used in `packages/twenty-e2e-testing` directory (for some reason when launching this test from IDE, be Webstorm or VSCode, it won't fetch the data from .env)
18 lines
592 B
TypeScript
18 lines
592 B
TypeScript
import { test as base, expect } from '../../lib/fixtures/screenshot';
|
|
import { LoginPage } from '../../lib/pom/loginPage';
|
|
|
|
// fixture
|
|
const test = base.extend<{ loginPage: LoginPage }>({
|
|
loginPage: async ({ page }, use) => {
|
|
await use(new LoginPage(page));
|
|
},
|
|
});
|
|
|
|
test('Check login with email', async ({ loginPage }) => {
|
|
await loginPage.typeEmail(process.env.DEFAULT_LOGIN);
|
|
await loginPage.clickContinueButton();
|
|
await loginPage.typePassword(process.env.DEFAULT_PASSWORD);
|
|
await loginPage.clickSignInButton();
|
|
await expect(loginPage.signInButton).not.toBeVisible();
|
|
});
|