Skip to content

Commit

Permalink
Spsh 1415 fix password test (#102)
Browse files Browse the repository at this point in the history
* minor changes

* minor changes
  • Loading branch information
jakobmadp authored Nov 21, 2024
1 parent 8d00ca6 commit 9a207fd
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions tests/workflow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,8 @@ test.describe(`Testfälle für den Test von workflows: Umgebung: ${process.env.E
await expect(personManagement.text_h2_Benutzerverwaltung).toBeVisible();
await personManagement.input_Suchfeld.fill(username);
await personManagement.button_Suchen.click();
await expect(header.icon_myProfil).toBeVisible();
await expect(header.icon_logout).toBeVisible();
await expect(personManagement.comboboxMenuIcon_Schule).toBeVisible();
await expect(personManagement.comboboxMenuIcon_Rolle).toBeVisible();
await expect(personManagement.comboboxMenuIcon_Klasse).toBeVisible();
await expect(personManagement.comboboxMenuIcon_Status).toBeVisible();
await page.getByRole("cell", { name: lastname, exact: true }).click({delay:500});
await expect(page.getByRole("cell", { name: lastname, exact: true })).toBeEnabled();
await page.getByRole("cell", { name: lastname, exact: true }).click();
});

await test.step(`In den User-Details PW-Reset Dialog starten`, async () => {
Expand Down

0 comments on commit 9a207fd

Please sign in to comment.