mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
df2d0574c1
* Enable nestedFolders by default * Make nestedFolders GA Co-authored-by: Timur Olzhabayev <timur.olzhabayev@grafana.com> * regenerate files * also update docs * skip failing test --------- Co-authored-by: Timur Olzhabayev <timur.olzhabayev@grafana.com>
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { e2e } from '../utils';
|
|
|
|
describe('Select focus/unfocus tests', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it.skip('Tests select focus/unfocus scenarios', () => {
|
|
e2e.flows.openDashboard({ uid: '5SdHCadmz' });
|
|
e2e.components.PageToolbar.item('Dashboard settings').click();
|
|
|
|
e2e.components.FolderPicker.containerV2()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.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(() => {
|
|
cy.get('#dashboard-folder-input').should('exist').should('have.focus');
|
|
});
|
|
|
|
e2e.pages.Dashboard.Settings.General.title().click();
|
|
|
|
e2e.components.FolderPicker.containerV2()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('#dashboard-folder-input').should('exist').should('not.have.focus');
|
|
});
|
|
});
|
|
});
|