mirror of https://github.com/grafana/grafana.git
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
|
import { e2e } from '../../index';
|
||
|
|
||
|
export const saveDashboard = () => {
|
||
|
e2e.components.NavToolbar.editDashboard.saveButton().click();
|
||
|
|
||
|
e2e.components.Drawer.DashboardSaveDrawer.saveButton().click();
|
||
|
e2e.flows.assertSuccessNotification();
|
||
|
};
|