mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
a64212d3f5
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
134 lines
5.4 KiB
JavaScript
134 lines
5.4 KiB
JavaScript
describe('Trends', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/insights')
|
|
})
|
|
|
|
it('Insight History Panel Rendered', () => {
|
|
cy.get('.insights-page').should('exist')
|
|
cy.wait(500)
|
|
cy.get('[data-attr=insight-history-button]').click()
|
|
cy.get('[data-attr=insight-history-panel]').should('exist')
|
|
})
|
|
|
|
it('Add a pageview action filter', () => {
|
|
// when
|
|
cy.contains('Add graph series').click()
|
|
cy.get('[data-attr=trend-element-subject-1]').click()
|
|
cy.contains('HogFlix homepage view').click()
|
|
|
|
// then
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('DAU on 1 element', () => {
|
|
cy.get('[data-attr=math-selector-0]').click()
|
|
cy.get('[data-attr=math-dau-0]').click()
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Show property select dynamically', () => {
|
|
cy.get('[data-attr=math-property-selector-0]').should('not.exist')
|
|
|
|
// Test that the math selector dropdown is shown on hover
|
|
cy.get('[data-attr=math-selector-0]').click()
|
|
cy.get('[data-attr=math-total-0]').should('be.visible')
|
|
|
|
// Use `force = true` because clicking the element without dragging the mouse makes the dropdown disappear
|
|
cy.get('[data-attr=math-avg-0]').click({ force: true })
|
|
cy.get('[data-attr=math-property-select]').should('exist')
|
|
})
|
|
|
|
it('Apply specific filter on default pageview event', () => {
|
|
cy.get('[data-attr=trend-element-subject-0]').click()
|
|
cy.get('div.property-key-info').contains('Pageview').click()
|
|
cy.get('[data-attr=trend-element-subject-0]').should('have.text', 'Pageview')
|
|
cy.get('[data-attr=show-prop-filter-0]').click()
|
|
cy.get('[data-attr="new-prop-filter-0-$pageview-filter"]').click()
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('[data-attr=prop-filter-event-1]').click({ force: true })
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
cy.get('[data-attr=trend-line-graph]', { timeout: 8000 }).should('exist')
|
|
})
|
|
|
|
it('Apply specific filter on custom action', () => {
|
|
cy.get('[data-attr=trend-element-subject-0]').click()
|
|
cy.get('li.ant-list-item').contains('Watched Movie').click()
|
|
cy.get('[data-attr=show-prop-filter-0]').click()
|
|
cy.get('[data-attr=property-filter-0]').contains('Add filter').click()
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('.ant-select-item-option-content').contains('is_first_movie').click({ force: true })
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
cy.get('[data-attr=trend-line-graph]', { timeout: 8000 }).should('exist')
|
|
})
|
|
|
|
it('Apply 1 overall filter', () => {
|
|
cy.get('[data-attr=trend-element-subject-0]').click()
|
|
cy.get('div.property-key-info').contains('Pageview').click()
|
|
cy.get('[data-attr=trend-element-subject-0]').should('have.text', 'Pageview')
|
|
cy.get('[data-attr=new-prop-filter-trends-filters]').click()
|
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
|
cy.get('[data-attr=prop-filter-event-1]').click({ force: true })
|
|
cy.get('[data-attr=prop-val]').click()
|
|
cy.get('[data-attr=prop-val-0]').click({ force: true })
|
|
|
|
cy.get('[data-attr=trend-line-graph]', { timeout: 8000 }).should('exist')
|
|
})
|
|
|
|
it('Apply interval filter', () => {
|
|
cy.get('[data-attr=interval-filter]').click()
|
|
cy.contains('Weekly').click()
|
|
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Apply pie filter', () => {
|
|
cy.get('[data-attr=chart-filter]').click()
|
|
cy.contains('Pie').click()
|
|
|
|
cy.get('[data-attr=trend-pie-graph]').should('exist')
|
|
})
|
|
|
|
it('Apply table filter', () => {
|
|
cy.get('[data-attr=chart-filter]').click()
|
|
cy.contains('Table').click()
|
|
|
|
cy.get('[data-attr=insights-table-graph]').should('exist')
|
|
})
|
|
|
|
it('Apply date filter', () => {
|
|
cy.get('[data-attr=date-filter]').click()
|
|
cy.contains('Last 30 days').click()
|
|
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Apply property breakdown', () => {
|
|
cy.get('[data-attr=add-breakdown-button]').click()
|
|
cy.get('[data-attr=prop-breakdown-select]').click()
|
|
cy.get('[data-attr=prop-breakdown-3]').click()
|
|
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Apply all users cohort breakdown', () => {
|
|
cy.get('[data-attr=add-breakdown-button]').click()
|
|
cy.get('[data-attr=breakdown-filter-content]').contains('Cohort').click()
|
|
cy.get('[data-attr=cohort-breakdown-select]').click()
|
|
cy.get('[data-attr=cohort-breakdown-all-users]').click()
|
|
|
|
cy.get('[data-attr=trend-line-graph]').should('exist')
|
|
})
|
|
|
|
it('Save to dashboard', () => {
|
|
cy.get('[data-attr=save-to-dashboard-button]').click()
|
|
cy.get('.ant-input').type('Home page views')
|
|
cy.get('form > .ant-select > .ant-select-selector').click()
|
|
cy.get(':nth-child(1) > .ant-select-item-option-content').click()
|
|
cy.contains('Add panel to dashboard').click()
|
|
cy.wait(300) // not ideal but toast has a delay render
|
|
cy.get('[data-attr=success-toast]').should('exist')
|
|
})
|
|
})
|