Skip to content

Commit

Permalink
Cambio en el nombre dl grupo
Browse files Browse the repository at this point in the history
  • Loading branch information
iyanfdezz committed Apr 26, 2024
1 parent ee489d8 commit 1364b5d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions webapp/e2e/steps/create-group.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ defineFeature(feature, (test) => {
}
});
});
let username;
let password;
let groupname;
test("The user can create a group", ({ given, when, then }) => {
given("A logged-in user", async () => {
await page.evaluate(() => {
Expand All @@ -87,8 +86,10 @@ defineFeature(feature, (test) => {
await page.click('[data-testid="home-grupos-link"]');
//await page.waitForNavigation({ waitUntil: "networkidle0" });


groupname = generateUUID();
await page.waitForSelector('[name="name"]');
await page.type('[name="name"]', "Testgroup");
await page.type('[name="name"]', groupname);
await page.waitForTimeout(2000);
await page.click('button[data-testid="addgroup-button"]');
});
Expand Down

0 comments on commit 1364b5d

Please sign in to comment.