beforeEach(() => { cy.visit('/collections/create?parent='.concat(Cypress.env('DSPACE_TEST_COMMUNITY'))); cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD')); }); it('should show loading component while saving', () => { const title = 'Test Collection Title'; cy.get('#title').type(title); cy.get('button[type="submit"]').click(); cy.get('ds-loading').should('be.visible'); });