-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8428d77
commit 64f1e18
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
apps/dsp-app/cypress/e2e/system-admin/remove-user-from-project.cy.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
describe('link a resource', () => { | ||
it('passes', () => { | ||
// Visit the main page | ||
cy.visit('http://localhost:4200/'); | ||
/* ==== Generated with Cypress Studio ==== */ | ||
cy.get(':nth-child(3) > .ng-tns-c617788805-4 > [data-cy="navigate-to-project-button"] > [data-cy="tile"] > .project-tile-content > .title > .title-text').click(); | ||
cy.get('.mat-mdc-list-item-title > div').click(); | ||
cy.get('#collaboration > .mdc-tab__content > .mdc-tab__text-label').click(); | ||
cy.get(':nth-child(1) > .table-action > .mat-mdc-menu-trigger > .mat-mdc-button-touch-target').click(); | ||
cy.get(':nth-child(4) > .mat-mdc-menu-item-text').click(); | ||
cy.get('[data-cy="confirmation-button"] > .mdc-button__label').click(); | ||
/* ==== End Cypress Studio ==== */ | ||
}) | ||
}) |