navigation_create_workspace.js 950B

1234567891011121314151617181920
  1. describe('navigate :: create_new > workspace', function () {
  2. before(function () {
  3. //login
  4. cy.visit('/login')
  5. cy.get('input[type=email]').type('admin@admin.admin')
  6. cy.get('input[type=password]').type('admin@admin.admin')
  7. cy.get('form').find('button').get('.connection__form__btnsubmit').click()
  8. })
  9. it ('', function () {
  10. cy.url().should('include', '/workspaces/1/dashboard')
  11. cy.get('button.sidebar__content__btnnewworkspace__btn.btn').click()
  12. cy.get('.createcontent__contentname__title').should('be.visible')
  13. cy.get('.createcontent__form__input').should('have.attr', 'placeholder')
  14. cy.get('.createcontent__form__input').type('workspace1')
  15. cy.get('.createcontent__form__input').should('have.attr', 'value', 'workspace1')
  16. cy.get('.cardPopup__close').click()
  17. cy.get('.createcontent__contentname__title').should('not.be.visible')
  18. })
  19. })