content_login_page.js 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. describe('content :: login_page', function () {
  2. before(function () {
  3. cy.visit('/')
  4. })
  5. it('check all content', function () {
  6. cy.url().should('include', '/login')
  7. cy.get('.card-header.connection__header.text-center').should('be.visible')
  8. cy.get('.languagedropdown__btnlanguage__imgselected').should('be.visible')
  9. cy.get('.loginpage__footer__text').should('be.visible')
  10. })
  11. })
  12. // @philippe 08/08/2018 - Not implemented in Tracim_V2.0
  13. //
  14. //describe('Content :: homepage > login > research', function () {
  15. // before(function () {
  16. // cy.visit('/')
  17. // })
  18. // it('check all content', function () {
  19. // cy.get('.search__input.form-control').should('be.visible')
  20. // cy.get('.search__input.form-control').should('have.attr','placeholder')
  21. // cy.get('#headerInputSearch').should('be.visible')
  22. // })
  23. //})
  24. describe('Content :: homepage > login > loginbox', function () {
  25. before(function () {
  26. cy.visit('/')
  27. })
  28. it('check all content', function () {
  29. cy.get('input[type=email]').should('be.visible')
  30. cy.get('input[type=email]').should('have.attr','placeholder')
  31. cy.get('input[type=password]').should('be.visible')
  32. cy.get('input[type=password]').should('have.attr','placeholder')
  33. cy.get('.connection__form__btnsubmit').should('be.visible')
  34. cy.get('.connection__form__btnsubmit').should('have.attr','type','button')
  35. cy.get('.connection__form__pwforgot').should('be.visible')
  36. })
  37. })