navigation_create_file.js 1.6KB

12345678910111213141516171819202122232425262728293031
  1. // Not connected
  2. //describe('navigate :: workspace > create_new > file', function () {
  3. // before(function () {
  4. // //login
  5. // cy.visit('/login')
  6. // cy.get('input[type=email]').type('admin@admin.admin')
  7. // cy.get('input[type=password]').type('admin@admin.admin')
  8. // cy.get('form').find('button').get('.connection__form__btnsubmit').click()
  9. // })
  10. // it ('header button', function () {
  11. // cy.get('#dropdownCreateBtn.workspace__header__btnaddcontent__label').click()
  12. // cy.get('.show .subdropdown__link__file__icon').click()
  13. // cy.get('.createcontent__contentname').should('be.visible')
  14. // cy.get('.createcontent__form__input').should('have.attr', 'placeholder')
  15. // cy.get('.createcontent__form__input').type('file1')
  16. // cy.get('.createcontent__form__input').should('have.attr', 'value', 'file1')
  17. // cy.get('.cardPopup__close').click()
  18. // cy.get('.createcontent__contentname').should('not.be.visible')
  19. // })
  20. // it ('content button', function () {
  21. // cy.get('.workspace__content__button.dropdownCreateBtn .btn-primary').click()
  22. // cy.get('.show .subdropdown__link__file__icon').click()
  23. // cy.get('.createcontent__contentname').should('be.visible')
  24. // cy.get('.createcontent__form__input').should('have.attr', 'placeholder')
  25. // cy.get('.createcontent__form__input').type('file2')
  26. // cy.get('.createcontent__form__input').should('have.attr', 'value', 'file2')
  27. // cy.get('.cardPopup__close').click()
  28. // cy.get('.createcontent__contentname').should('not.be.visible')
  29. // })
  30. //})