2020-05-22 18:34:48 +02:00
|
|
|
describe('Actions', () => {
|
|
|
|
beforeEach(() => {
|
2021-06-09 16:58:34 +02:00
|
|
|
cy.clickNavMenu('events')
|
2020-11-13 14:59:08 +01:00
|
|
|
cy.get('[data-attr=events-actions-tab]').click()
|
2020-05-22 18:34:48 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Actions loaded', () => {
|
2020-11-13 14:59:08 +01:00
|
|
|
cy.get('[data-attr=actions-table]').should('exist')
|
2020-05-22 18:34:48 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Click on an action', () => {
|
|
|
|
cy.get('[data-attr=action-link-0]').click()
|
2020-11-05 13:55:33 +01:00
|
|
|
cy.get('h1').should('contain', 'Editing action')
|
2020-05-22 18:34:48 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Create action', () => {
|
|
|
|
cy.get('[data-attr=create-action]').click()
|
2020-05-27 12:26:36 +02:00
|
|
|
cy.get('.ant-card-head-title').should('contain', 'event or pageview')
|
|
|
|
cy.get('[data-attr=new-action-pageview]').click()
|
2020-11-05 13:55:33 +01:00
|
|
|
cy.get('h1').should('contain', 'Creating action')
|
2020-05-22 18:34:48 +02:00
|
|
|
|
|
|
|
cy.get('[data-attr=edit-action-input]').type(Cypress._.random(0, 1e6))
|
2020-11-05 13:55:33 +01:00
|
|
|
cy.get('.ant-radio-group > :nth-child(3)').click()
|
2020-05-22 18:34:48 +02:00
|
|
|
cy.get('[data-attr=edit-action-url-input]').type(Cypress.config().baseUrl)
|
|
|
|
cy.get('[data-attr=save-action-button]').click()
|
|
|
|
|
2020-05-27 12:26:36 +02:00
|
|
|
cy.contains('Action saved').should('exist')
|
2020-05-22 18:34:48 +02:00
|
|
|
})
|
|
|
|
})
|