Skip to content

Commit

Permalink
deleted tests added
Browse files Browse the repository at this point in the history
  • Loading branch information
FahadDarw committed Aug 27, 2024
1 parent a22dc51 commit dc4bcd4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ describe('Group Creation Tests', () => {

Logger.log("remove the school from the group");
projectTaskList.removeSchoolFromGroup();


Logger.log("delete the group");
projectTaskList.deleteGroup();

});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,10 @@ export default class ProjectTaskList extends BasePage {
cy.get('#remove-conversion-confirmation').click();
return this;
}

static deleteGroup() {
cy.get('[data-cy="tes"]').click();
cy.get('#delete-group-confirmation').click();
return this;
}
}

0 comments on commit dc4bcd4

Please sign in to comment.