datalens-ui/tests/opensource-suites/dash/relations/relationsWithErrorChart.test.ts
2026-06-24 20:31:05 +05:00

57 lines
2.3 KiB
TypeScript

import {Page} from '@playwright/test';
import DashboardPage from '../../../page-objects/dashboard/DashboardPage';
import datalensTest from '../../../utils/playwright/globalTestDefinition';
import {TestParametrizationConfig} from '../../../types/config';
import {openTestPage} from '../../../utils';
const PARAMS = {
UNKNOWN: 'Unspecified',
};
datalensTest.describe('Dashboards - Relations (new)', () => {
datalensTest.beforeEach(async ({page}: {page: Page}) => {
// some page need to be loaded so we can get data of feature flag from DL var
await openTestPage(page, '/');
});
datalensTest.afterEach(async ({page}: {page: Page}) => {
const dashboardPage = new DashboardPage({page});
await dashboardPage.cancelRelationsChanges();
await dashboardPage.exitEditMode();
await dashboardPage.deleteDash();
});
datalensTest(
'Pop-up opening for chart with error (removed dataset) and there is possibility to set ignore link',
async ({page, config}: {page: Page; config: TestParametrizationConfig}) => {
// copy the original dashboard with delayed widget loading,
// so that the tests do not collapse due to the transition to editing and locks
const dashboardPage = new DashboardPage({page});
await dashboardPage.duplicateDashboard({
dashId: config.dash.urls.DashboardWithErrorChart,
});
await dashboardPage.openControlRelationsDialog();
await dashboardPage.waitForSelector(`text=${PARAMS.UNKNOWN}`);
},
);
datalensTest(
'Pop-up opening for chart with error (removed dataset but old fields) and there is possibility to set ignore link',
async ({page, config}: {page: Page; config: TestParametrizationConfig}) => {
// copy the original dashboard with delayed widget loading,
// so that the tests do not collapse due to the transition to editing and locks
const dashboardPage = new DashboardPage({page});
await dashboardPage.duplicateDashboard({
dashId: config.dash.urls.DashboardWithAPIErrorChart,
});
await dashboardPage.openControlRelationsDialog();
await dashboardPage.waitForSelector(`text=${PARAMS.UNKNOWN}`);
},
);
});