123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- describe('Templates', () => {
- it('Opens templates page', () => {
- cy.resetDB();
- cy.loginAndVisit('/campaigns/templates');
- });
- it('Counts default templates', () => {
- cy.get('tbody td[data-label=Name]').should('have.length', 1);
- });
- it('Clones template', () => {
- // Clone the campaign.
- cy.get('[data-cy=btn-clone]').first().click();
- cy.get('.modal input').clear().type('cloned').click();
- cy.get('.modal button.is-primary').click();
- cy.wait(250);
- // Verify the newly created row.
- cy.get('tbody td[data-label="Name"]').eq(1).contains('cloned');
- });
- it('Edits template', () => {
- cy.get('tbody td.actions [data-cy=btn-edit]').first().click();
- cy.wait(250);
- cy.get('input[name=name]').clear().type('edited');
- cy.get('textarea[name=body]').clear().type('<span>test</span> {{ template "content" . }}',
- { parseSpecialCharSequences: false, delay: 0 });
- cy.get('.modal-card-foot button.is-primary').click();
- cy.wait(250);
- cy.get('tbody td[data-label="Name"] a').contains('edited');
- });
- it('Previews templates', () => {
- // Edited one sould have a bare body.
- cy.get('tbody [data-cy=btn-preview').eq(0).click();
- cy.wait(500);
- cy.get('.modal-card-body iframe').iframe(() => {
- cy.get('span').first().contains('test');
- cy.get('p').first().contains('Hi there');
- });
- cy.get('.modal-card-foot button').click();
- // Cloned one should have the full template.
- cy.get('tbody [data-cy=btn-preview').eq(1).click();
- cy.wait(500);
- cy.get('.modal-card-body iframe').iframe(() => {
- cy.get('.wrap p').first().contains('Hi there');
- cy.get('.footer a').first().contains('Unsubscribe');
- });
- cy.get('.modal-card-foot button').click();
- });
- it('Sets default', () => {
- cy.get('tbody td.actions').eq(1).find('[data-cy=btn-set-default]').click();
- cy.get('.modal button.is-primary').click();
- // The original default shouldn't have default and the new one should have.
- cy.get('tbody td.actions').eq(0).then((el) => {
- cy.wrap(el).find('[data-cy=btn-delete]').should('exist');
- cy.wrap(el).find('[data-cy=btn-set-default]').should('exist');
- });
- cy.get('tbody td.actions').eq(1).then((el) => {
- cy.wrap(el).find('[data-cy=btn-delete]').should('not.exist');
- cy.wrap(el).find('[data-cy=btn-set-default]').should('not.exist');
- });
- });
- it('Deletes template', () => {
- cy.wait(250);
- cy.get('tbody td.actions [data-cy=btn-delete]').first().click();
- cy.get('.modal button.is-primary').click();
- cy.wait(250);
- cy.get('tbody td.actions').should('have.length', 1);
- });
- });
|