0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/e2e/retention.js
Paul D'Ambra d613f4bd06
chore: upgrade cypress to v10x (#9650)
* update cypress

* really click something that's actually there

* obey cypress and use done

* run cypress 9 in CI

* no need for before each when only one test

* no need to set window size to the default

* get tests passing file by file

* delay checking for a graph in a test

* be more specific cypress

* use cy command

* select text like a human

* silly cypress

* try and avoid cypress deciding that a visible field is not valid

* select delete button correctly

* find save button differently

* try and avoid not always typing the first character

* better trends selections

* use cy command to navigate

* conitnue trying to get tests to pass in CI

* another try at setting feature flag names in CI

* can CI find undo button without a wait?

* better assertion for cypress

* up to v10

* fix splitting specs with v10 path

* show cypress how to wait for the test to finish

* remove redundant file

* change return to satisfy new cypress

* move import
2022-06-09 11:14:21 +01:00

39 lines
1.7 KiB
JavaScript

import { urls } from 'scenes/urls'
describe('Retention', () => {
beforeEach(() => {
cy.visit(urls.insightNew())
cy.get('[data-attr=insight-retention-tab]').click()
})
it('should apply filter and navigate to persons', () => {
// NOTE: First wait for results to load, try and make the test more
// stable. This is to try and avoid an issue where after selecting a
// filter property, the results section would be blank
cy.get('[data-attr=retention-table').should('exist')
// tests for new property group filters
// cy.get('[data-attr=insight-retention-add-filter-group]').click()
// cy.get('[data-attr=property-select-toggle-0]').click()
cy.get('[data-attr=insight-retention-add-filter-group]').click()
cy.get('[data-attr=property-select-toggle-0]').click()
cy.get('[data-attr=taxonomic-filter-searchfield]').click()
cy.get('[data-attr=taxonomic-filter-searchfield]').type('is_demo')
cy.get('[data-attr=taxonomic-tab-person_properties]').click()
cy.get('[data-attr=prop-filter-person_properties-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')
// 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')
})
})