2022-05-27 14:31:17 +02:00
|
|
|
import { urls } from 'scenes/urls'
|
|
|
|
|
|
|
|
import { decideResponse } from '../fixtures/api/decide'
|
|
|
|
|
|
|
|
// NOTE: As the API data is randomly generated, we are only really testing here that the overall output is correct
|
|
|
|
// The actual graph is not under test
|
|
|
|
describe('Exporting Insights', () => {
|
|
|
|
beforeEach(() => {
|
2024-02-27 15:37:58 +01:00
|
|
|
cy.intercept('https://us.i.posthog.com/decide/*', (req) =>
|
2022-05-27 14:31:17 +02:00
|
|
|
req.reply(
|
|
|
|
decideResponse({
|
|
|
|
'export-dashboard-insights': true,
|
|
|
|
})
|
|
|
|
)
|
|
|
|
)
|
|
|
|
cy.visit(urls.insightNew())
|
|
|
|
// apply filter
|
2023-11-14 15:38:36 +01:00
|
|
|
cy.get('[data-attr$=add-filter-group]').click()
|
2022-05-27 14:31:17 +02:00
|
|
|
cy.get('[data-attr=property-select-toggle-0]').click()
|
|
|
|
cy.get('[data-attr=taxonomic-filter-searchfield]').click()
|
|
|
|
cy.get('[data-attr=prop-filter-event_properties-1]').click({ force: true })
|
2024-08-14 12:15:58 +02:00
|
|
|
cy.get('[data-attr=prop-val]').type('not-applicable')
|
|
|
|
cy.get('[data-attr=prop-val]').type('{enter}')
|
2022-05-27 14:31:17 +02:00
|
|
|
|
|
|
|
// Save
|
|
|
|
cy.get('[data-attr="insight-save-button"]').click()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Export an Insight to png', () => {
|
2023-03-02 16:56:31 +01:00
|
|
|
cy.get('[data-attr="insight-edit-button"]').should('exist') // Export is only available in view mode
|
2023-12-27 09:52:28 +01:00
|
|
|
cy.get('.TopBar3000 [data-attr=more-button]').click()
|
2023-02-03 12:40:22 +01:00
|
|
|
cy.get('.Popover [data-attr=export-button]').click()
|
2022-05-27 14:31:17 +02:00
|
|
|
cy.get('[data-attr=export-button-png]').click()
|
|
|
|
|
2023-02-03 12:40:22 +01:00
|
|
|
// Ensure that no popovers are being shown
|
2022-09-15 10:42:08 +02:00
|
|
|
cy.wait(500)
|
2023-02-03 12:40:22 +01:00
|
|
|
cy.get('.Popover').should('not.exist')
|
2022-09-15 10:42:08 +02:00
|
|
|
|
2022-07-07 21:16:13 +02:00
|
|
|
const expectedFileName = 'export-pageview-count.png'
|
2022-05-27 14:31:17 +02:00
|
|
|
cy.task('compareToReferenceImage', {
|
2022-07-07 21:16:13 +02:00
|
|
|
source: expectedFileName,
|
|
|
|
reference: `../data/exports/${expectedFileName}`,
|
2022-05-27 14:31:17 +02:00
|
|
|
diffThreshold: 0.01,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|