2020-11-25 11:12:22 +01:00
|
|
|
describe('Person Visualization Check', () => {
|
2020-10-08 17:25:52 +02:00
|
|
|
beforeEach(() => {
|
2021-06-09 16:58:34 +02:00
|
|
|
cy.clickNavMenu('persons')
|
2021-04-16 20:07:16 +02:00
|
|
|
cy.location('pathname').should('eq', '/persons')
|
2021-02-09 16:28:01 +01:00
|
|
|
cy.get('.ant-spin-spinning').should('not.exist') // Wait until initial table load to be able to use the search
|
2021-02-04 10:53:00 +01:00
|
|
|
cy.get('[data-attr=persons-search]').type('deb').should('have.value', 'deb')
|
2022-08-10 13:00:08 +02:00
|
|
|
cy.contains('deborah.fernandez@gmail.com').should('not.exist')
|
2020-10-08 17:25:52 +02:00
|
|
|
cy.contains('deborah.fernandez@gmail.com').click()
|
2022-06-17 13:43:57 +02:00
|
|
|
cy.wait(1000)
|
2020-10-08 17:25:52 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Can access person page', () => {
|
|
|
|
cy.get('[data-row-key="email"] > :nth-child(1)').should('contain', 'email')
|
2023-05-18 21:14:11 +02:00
|
|
|
cy.get('[data-row-key="email"] [data-attr=copy-icon]').click()
|
2022-01-18 21:24:19 +01:00
|
|
|
cy.get('[role="tab"]').contains('Events').click()
|
|
|
|
cy.get('table').contains('Event').should('exist')
|
2020-10-08 17:25:52 +02:00
|
|
|
})
|
2022-06-17 13:43:57 +02:00
|
|
|
|
2022-08-04 14:29:21 +02:00
|
|
|
it('Does not show the Person column', () => {
|
2022-06-17 13:43:57 +02:00
|
|
|
cy.get('[role="tab"]').contains('Events').click()
|
|
|
|
cy.get('table').contains('Event').click()
|
|
|
|
cy.get('table').should('not.contain', 'Person')
|
|
|
|
})
|
2020-10-08 17:25:52 +02:00
|
|
|
})
|