mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 01:41:24 -06:00
7bca69849f
* Mark Scenes feature toggles as GA * Move old arch e2e to a new folder * Run E2E on scenes by default * Upgrade e2e-selectors to ensure the tests in Playwright works
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();
|
|
};
|