Files
zitadel/acceptance/tests/username-password.spec.ts

13 lines
457 B
TypeScript
Raw Normal View History

2024-10-16 12:23:38 +02:00
import { test, expect } from '@playwright/test';
2024-10-16 16:50:48 +02:00
test('username and password', async ({ page }) => {
await page.goto('/');
const loginname = page.getByLabel('Loginname')
await loginname.pressSequentially("zitadel-admin@zitadel.localhost");
await loginname.press( 'Enter');
const password = page.getByLabel('Password')
await password.pressSequentially("Password1!");
await password.press( 'Enter');
await page.getByText('Skip').click();
2024-10-16 12:23:38 +02:00
});