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>
33 lines
917 B
JavaScript
33 lines
917 B
JavaScript
describe('Trends sessions', () => {
|
|
beforeEach(() => {
|
|
// given
|
|
cy.visit('/insights')
|
|
cy.get('[id="rc-tabs-0-tab-SESSIONS"]').click()
|
|
})
|
|
|
|
it('Sessions exists', () => {
|
|
// then
|
|
cy.get('[data-attr=trend-line-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('Save to dashboard', () => {
|
|
cy.get('[data-attr=save-to-dashboard-button]').click()
|
|
cy.contains('Add panel to dashboard').click()
|
|
cy.get('[data-attr=success-toast]').should('exist')
|
|
})
|
|
})
|