0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/cypress/e2e/cohorts.cy.ts
Michael Matloka 6b4a936147
chore(3000): Remove unused test and clean up cohort buttons (#19629)
* Remove malformed, unused E2E test

* Improve cohorts top bar buttons
2024-01-08 13:26:43 +01:00

65 lines
2.5 KiB
TypeScript

describe('Cohorts', () => {
const goToCohorts = (): void => {
cy.clickNavMenu('personsmanagement')
cy.get('[data-attr=persons-management-cohorts-tab]').click()
}
beforeEach(() => {
goToCohorts()
})
it('Cohorts new and list', () => {
// load an empty page
cy.title().should('equal', 'Cohorts • People • PostHog')
cy.contains('Create your first cohort').should('exist')
cy.get('[data-attr="product-introduction-docs-link"]').should('contain', 'Learn more')
// go to create a new cohort
cy.get('[data-attr="new-cohort"]').click()
// select "add filter" and "property"
cy.get('[data-attr="cohort-selector-field-value"]').click()
cy.get('[data-attr="cohort-personPropertyBehavioral-have_property-type"]').click()
cy.get('[data-attr="cohort-taxonomic-field-key"]').click()
// select the first property
cy.get('[data-attr=taxonomic-filter-searchfield]').click()
cy.get('[data-attr=taxonomic-filter-searchfield]').type('is_demo')
cy.get('[data-attr=prop-filter-person_properties-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="cohort-name"]').click()
// set cohort name & description
cy.get('[data-attr="cohort-name"]').type('Test Cohort')
// save
cy.get('[data-attr="save-cohort"]').click()
cy.get('[data-attr=success-toast]').contains('Cohort saved').should('exist')
// back to cohorts
goToCohorts()
cy.get('tbody').contains('Test Cohort')
cy.contains('Create your first cohort').should('not.exist')
// back into cohort
cy.get('tbody').contains('Test Cohort').click()
// duplicate cohort (dynamic)
cy.get('[data-attr="more-button"]').click()
cy.get('.Popover__content').contains('Duplicate as dynamic cohort').click()
cy.get('.Toastify__toast-body').contains('View cohort').click()
// duplicate cohort (static)
cy.get('[data-attr="more-button"]').click()
cy.get('.Popover__content').contains('Duplicate as static cohort').click()
cy.get('.Toastify__toast-body').contains('View cohort').click()
// delete cohort
cy.get('[data-attr="more-button"]').click()
cy.get('.Popover__content').contains('Delete cohort').click()
goToCohorts()
cy.get('tbody').should('not.have.text', 'Test Cohort (dynamic copy) (static copy)')
})
})