mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
4cb64d0c74
* added timeouts and waits to ensure flow of cypress tests * removed unused test * fixed trends elements tests * testing a longer wait time - temp * fix trends sessions and retetion filtering tests * fix events filtering test * removed wait * trends sessions fix * minor update * fix live actions & sessions * improve timeouts * more timouts * removed some waits * added timeouts to trends tests * modify config * remove test on bug * removed timeout from events table * remove dashboards timeout * change selector for sessions tab * use data-attr
16 lines
545 B
JavaScript
16 lines
545 B
JavaScript
describe('Retention', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/')
|
|
cy.get('[data-attr=insight-retention-tab]').click()
|
|
})
|
|
|
|
it('Apply 1 overall filter', () => {
|
|
cy.get('[data-attr=new-prop-filter-insight-retention]').click()
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('[data-attr=prop-filter-person-0]').click()
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click()
|
|
cy.get('[data-attr=retention-table').should('exist')
|
|
})
|
|
})
|