mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
|
|
import { e2e } from '../index';
|
||
|
|
|
||
|
|
export const saveDashboard = () => {
|
||
|
|
e2e.components.PageToolbar.item('Save dashboard').click();
|
||
|
|
|
||
|
|
e2e.pages.SaveDashboardModal.save().click();
|
||
|
|
|
||
|
|
e2e.flows.assertSuccessNotification();
|
||
|
|
};
|