mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
28 lines
991 B
TypeScript
28 lines
991 B
TypeScript
import { e2e } from '../utils';
|
|
|
|
describe('Visualization suggestions', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('Should be shown and clickable', () => {
|
|
e2e.flows.openDashboard({ uid: 'aBXrJ0R7z', queryParams: { editPanel: 9 } });
|
|
|
|
// Try visualization suggestions
|
|
e2e.components.PanelEditor.toggleVizPicker().click();
|
|
e2e.components.RadioButton.container().filter(':contains("Suggestions")').click();
|
|
|
|
// Verify we see suggestions
|
|
e2e.components.VisualizationPreview.card('Line chart').should('be.visible');
|
|
|
|
// Verify search works
|
|
cy.get('[placeholder="Search for..."]').type('Table');
|
|
// Should no longer see line chart
|
|
e2e.components.VisualizationPreview.card('Line chart').should('not.exist');
|
|
|
|
// Select a visualisation
|
|
e2e.components.VisualizationPreview.card('Table').click();
|
|
e2e.components.Panels.Visualization.Table.header().should('be.visible');
|
|
});
|
|
});
|