mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
bc24c52804
* Attempt to fix e2e retention test * attempt 2
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
describe('Retention', () => {
|
|
beforeEach(() => {
|
|
cy.get('[data-attr=insight-retention-tab]').click()
|
|
})
|
|
|
|
it('should apply filter and navigate to persons', () => {
|
|
cy.get('[data-attr=new-prop-filter-insight-retention]').click()
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('[data-attr=property-filter-dropdown] input').type('is_demo')
|
|
cy.get('[data-attr=prop-filter-person-0]').click({ force: true })
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
cy.get('[data-attr=retention-table').should('exist')
|
|
|
|
cy.get('.percentage-cell').last().click()
|
|
|
|
cy.get('[data-attr=retention-person-link]').its('length').should('eq', 1)
|
|
cy.get('[data-attr=retention-person-link]').contains('smith.nunez@gmail.com')
|
|
|
|
cy.get('[data-attr=retention-person-link]').click()
|
|
|
|
cy.url().should('include', '/person/')
|
|
cy.contains('smith.nunez@gmail.com').should('exist')
|
|
})
|
|
})
|