mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
21 lines
694 B
JavaScript
21 lines
694 B
JavaScript
|
describe('Live Actions', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.get('[data-attr=menu-item-events]').click()
|
||
|
cy.get('[data-attr=menu-item-live-actions]').click()
|
||
|
})
|
||
|
|
||
|
/* it('Live actions loaded', () => {
|
||
|
cy.get('[data-attr=events-table]').should('exist')
|
||
|
})
|
||
|
*/
|
||
|
it('Apply 1 overall filter', () => {
|
||
|
cy.get('[data-attr=new-prop-filter-LiveActionsTable]').click()
|
||
|
cy.get('[data-attr=property-filter-dropdown]').click()
|
||
|
cy.get('[data-attr=prop-filter-event-1]').click()
|
||
|
cy.get('[data-attr=prop-val]').click()
|
||
|
cy.get('[data-attr=prop-val-1]').click()
|
||
|
|
||
|
cy.get('[data-attr=events-table]').should('exist')
|
||
|
})
|
||
|
})
|