Dashboard: POC to run existing e2e with `dashboardScene` feature toggle (#84598) * Standarize e2e for addDashbaord e2e flow * WIP: Duplicate e2e dashboard flows and smoke test for scene e2e tests * Fix autoformatting mistake for bash file * Enable dashboardScene using local storage and only for the scene folder * Add missing folders * Set the feature toggle in the before of all tests * Revert "Standarize e2e for addDashbaord e2e flow" This reverts commit6b9ea9d5a4. * Add missing e2e selectors to NavToolbarActions, and modify addDashboard scene flow * e2e: panels_smokescreen.spec.ts migrated * e2e smokeTestSceneario migrated * Start migrating dashbaord-suite e2e * WIP create variable types * adjust tests for scenes * restore dashboard json file * update scenes version * restore pkg/build/wire/internal/wire/testdata modifications * finalising test adjusments * restore pkg/build/wire/internal/wire/testdata files * add latest scenes version and update tests * add drone setup for dashboard scenes tests * update to latest scenes version * adjust drone errors * adjust indentation in drone yml file * drone adjustments * add github workflow to run scenes e2e * restore drone file * adjust github workflow * wip: github workflow adjustments * test remove gpu * bump * undo formating changes * wip: github workflow debugging * adjusting flaky tests * update to latest scenes * clean up workflow file * adjust flaky test * clean up pr * finalise worflow logic and add to codeowners * clean up launching old arch dashboards e2e separately --------- Co-authored-by: Sergej-Vlasov <sergej.s.vlasov@gmail.com> Co-authored-by: Jeff Levin <jeff@levinology.com> (cherry picked from commit9ea1042329) Co-authored-by: Alexa V <239999+axelavargas@users.noreply.github.com>
58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
import { e2e } from '../index';
|
|
|
|
export enum PanelMenuItems {
|
|
Edit = 'Edit',
|
|
Inspect = 'Inspect',
|
|
More = 'More...',
|
|
Extensions = 'Extensions',
|
|
}
|
|
|
|
export const openPanelMenuItem = (menu: PanelMenuItems, panelTitle = 'Panel Title') => {
|
|
// we changed the way we open the panel menu in react panels with the new panel header
|
|
detectPanelType(panelTitle, (isAngularPanel) => {
|
|
if (isAngularPanel) {
|
|
e2e.components.Panels.Panel.title(panelTitle).should('be.visible').click();
|
|
e2e.components.Panels.Panel.headerItems(menu).should('be.visible').click();
|
|
} else {
|
|
e2e.components.Panels.Panel.menu(panelTitle).click({ force: true }); // force click because menu is hidden and show on hover
|
|
e2e.components.Panels.Panel.menuItems(menu).should('be.visible').click();
|
|
}
|
|
});
|
|
};
|
|
|
|
export const openPanelMenuExtension = (extensionTitle: string, panelTitle = 'Panel Title') => {
|
|
const menuItem = PanelMenuItems.Extensions;
|
|
// we changed the way we open the panel menu in react panels with the new panel header
|
|
detectPanelType(panelTitle, (isAngularPanel) => {
|
|
if (isAngularPanel) {
|
|
e2e.components.Panels.Panel.title(panelTitle).should('be.visible').click();
|
|
e2e.components.Panels.Panel.headerItems(menuItem)
|
|
.should('be.visible')
|
|
.parent()
|
|
.parent()
|
|
.invoke('addClass', 'open');
|
|
e2e.components.Panels.Panel.headerItems(extensionTitle).should('be.visible').click();
|
|
} else {
|
|
e2e.components.Panels.Panel.menu(panelTitle).click({ force: true }); // force click because menu is hidden and show on hover
|
|
e2e.components.Panels.Panel.menuItems(menuItem).trigger('mouseover', { force: true });
|
|
e2e.components.Panels.Panel.menuItems(extensionTitle).click({ force: true });
|
|
}
|
|
});
|
|
};
|
|
|
|
function detectPanelType(panelTitle: string, detected: (isAngularPanel: boolean) => void) {
|
|
e2e.components.Panels.Panel.title(panelTitle).then((el) => {
|
|
const isAngularPanel = el.find('plugin-component.ng-scope').length > 0;
|
|
|
|
if (isAngularPanel) {
|
|
Cypress.log({
|
|
name: 'detectPanelType',
|
|
displayName: 'detector',
|
|
message: 'Angular panel detected, will use legacy selectors.',
|
|
});
|
|
}
|
|
|
|
detected(isAngularPanel);
|
|
});
|
|
}
|