mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
0f6ae272e9
* e2e: Fix running any suite locally * Fixed issue with testFiles filter when specifying suite name * unrelated * fixed import paths to shared * Moving dashboards to root
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { e2e } from '@grafana/e2e';
|
|
|
|
e2e.scenario({
|
|
describeName: 'Select focus/unfocus tests',
|
|
itName: 'Tests select focus/unfocus scenarios',
|
|
addScenarioDataSource: false,
|
|
addScenarioDashBoard: false,
|
|
skipScenario: false,
|
|
scenario: () => {
|
|
e2e.flows.openDashboard({ uid: '5SdHCadmz' });
|
|
e2e.components.PageToolbar.item('Dashboard settings').click();
|
|
|
|
e2e.components.FolderPicker.containerV2()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
e2e().get('#dashboard-folder-input').should('be.visible').click();
|
|
});
|
|
|
|
e2e.components.Select.option().should('be.visible').first().click();
|
|
|
|
e2e.components.FolderPicker.containerV2()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
e2e().get('#dashboard-folder-input').should('exist').should('have.focus');
|
|
});
|
|
|
|
e2e.pages.Dashboard.Settings.General.title().click();
|
|
|
|
e2e.components.FolderPicker.containerV2()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
e2e().get('#dashboard-folder-input').should('exist').should('not.have.focus');
|
|
});
|
|
},
|
|
});
|