2020-11-25 11:12:22 +01:00
|
|
|
describe('Person Visualization Check', () => {
|
2020-10-08 17:25:52 +02:00
|
|
|
beforeEach(() => {
|
2023-11-08 16:16:05 +01:00
|
|
|
cy.clickNavMenu('personsmanagement')
|
2024-01-15 10:31:54 +01:00
|
|
|
cy.location('pathname').should('contain', '/persons')
|
2023-11-08 16:16:05 +01:00
|
|
|
cy.wait(1000)
|
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
|
|
|
})
|