Skip to content

Commit

Permalink
Added waitForNavigation
Browse files Browse the repository at this point in the history
  • Loading branch information
UO263728 authored and UO263728 committed Apr 30, 2023
1 parent a09d602 commit 41e6711
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion webapp/e2e/features/login.feature
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Scenario: El usuario introduce incorrectamente sus credenciales
Scenario: El usuario introduce correctamente sus credenciales
When el usuario hace click sobre el botón LOGIN y es redirigido a la página de Inrupt
Then el usuario introduce su usuario y contraseña correctamente e inicia sesión
And el usuario es redirigido a su perfil en la app
And el usuario puede visualizar su perfil en la app
13 changes: 8 additions & 5 deletions webapp/e2e/steps/login.steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ defineFeature(feature, (test) => {

given('El usuario se encuentra en la página de inicio de sesión', async () => {
await page.goto("http://localhost:3000/user");
await page.waitForNavigation();
});

when('el usuario hace click sobre el botón LOGIN y es redirigido a la página de Inrupt', async () => {
await expect(page).toClick('button', { text: 'Login' });
await page.waitForNavigation();
});

then('el usuario introduce su usuario y contraseña incorrectamente', async () => {
await page.type('input', 'ejemplo123');
await page.type('input#username', '');
await page.type('input#password', '123Ejemplo!');
await page.click('button');
});
Expand All @@ -49,21 +49,24 @@ defineFeature(feature, (test) => {
given('el usuario se encuentra en la página de inicio de sesión', async () => {
page = await browser.newPage();
await page.goto("http://localhost:3000/user");
await page.waitForNavigation();
});

when('el usuario hace click sobre el botón LOGIN y es redirigido a la página de Inrupt', async () => {
await expect(page).toClick('button', { text: 'Login' });
await page.waitForNavigation();
});

then('el usuario introduce su usuario y contraseña correctamente e inicia sesión', async () => {
await page.type('input', 'ejemplo123');
await page.type('input#username', 'ejemplo123'); // email = [email protected]
await page.type('input#password', '123Ejemplo!');
await page.click('button');
await page.waitForNavigation();
});

and('el usuario es redirigido a su perfil en la app', async () => {
await expect(page.url()).toMatch('http://localhost:3000/start');
and('el usuario puede visualizar su perfil en la app', async () => {
await page.goto("http://localhost:3000/user");
await page.waitForNavigation();
});
});

Expand Down

0 comments on commit 41e6711

Please sign in to comment.