mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
322cd74b9c
Re-enable basic test for Explore
23 lines
718 B
TypeScript
23 lines
718 B
TypeScript
import { e2e } from '../utils';
|
|
|
|
describe('Explore', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('Basic path through Explore.', () => {
|
|
e2e.pages.Explore.visit();
|
|
e2e.pages.Explore.General.container().should('have.length', 1);
|
|
e2e.components.RefreshPicker.runButtonV2().should('have.length', 1);
|
|
|
|
e2e.components.DataSource.TestData.QueryTab.scenarioSelectContainer()
|
|
.scrollIntoView()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input[id*="test-data-scenario-select-"]').should('be.visible').click();
|
|
});
|
|
|
|
cy.contains('CSV Metric Values').scrollIntoView().should('be.visible').click();
|
|
});
|
|
});
|