mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
7bca69849f
* Mark Scenes feature toggles as GA * Move old arch e2e to a new folder * Run E2E on scenes by default * Upgrade e2e-selectors to ensure the tests in Playwright works
25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
import { e2e } from '../utils';
|
|
|
|
describe('Dashboard keybindings', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('should collapse and expand all rows', () => {
|
|
e2e.flows.openDashboard({ uid: 'Repeating-rows-uid/repeating-rows' });
|
|
e2e.components.Panels.Panel.content().should('have.length', 5);
|
|
e2e.components.Panels.Panel.title('server = A, pod = Bob').should('be.visible');
|
|
e2e.components.Panels.Panel.title('server = B, pod = Bob').should('be.visible');
|
|
|
|
cy.get('body').type('d').type('{shift}c');
|
|
e2e.components.Panels.Panel.content().should('have.length', 0);
|
|
e2e.components.Panels.Panel.title('server = A, pod = Bob').should('not.exist');
|
|
e2e.components.Panels.Panel.title('server = B, pod = Bob').should('not.exist');
|
|
|
|
cy.get('body').type('d').type('{shift}e');
|
|
e2e.components.Panels.Panel.content().should('have.length', 6);
|
|
e2e.components.Panels.Panel.title('server = A, pod = Bob').should('be.visible');
|
|
e2e.components.Panels.Panel.title('server = B, pod = Bob').should('be.visible');
|
|
});
|
|
});
|