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({ force: true }) cy.get('[data-attr=prop-val]').click() cy.get('[data-attr=prop-val-1]').click({ force: true }) cy.get('[data-attr=events-table]').should('exist') }) })