63 lines
3.0 KiB
TypeScript
63 lines
3.0 KiB
TypeScript
import {expect} from '@playwright/test';
|
|
import {
|
|
ChartKitQa,
|
|
DialogFieldMainSectionQa,
|
|
WizardPageQa,
|
|
WizardVisualizationId,
|
|
} from '../../../../../src/shared';
|
|
import {PlaceholderName} from '../../../../page-objects/wizard/SectionVisualization';
|
|
import WizardPage from '../../../../page-objects/wizard/WizardPage';
|
|
import {openTestPage, slct} from '../../../../utils';
|
|
import datalensTest from '../../../../utils/playwright/globalTestDefinition';
|
|
import {SMALL_SCREENSHOT_VIEWPORT_SIZE} from '../constants';
|
|
|
|
datalensTest.describe('Wizard', () => {
|
|
datalensTest.describe('Combined chart', () => {
|
|
datalensTest.beforeEach(async ({page, config}) => {
|
|
await page.setViewportSize(SMALL_SCREENSHOT_VIEWPORT_SIZE);
|
|
await openTestPage(page, config.wizard.urls.WizardBasicDataset);
|
|
const wizardPage = new WizardPage({page});
|
|
await wizardPage.createNewFieldWithFormula('salesSum', 'sum([Sales])');
|
|
await wizardPage.createNewFieldWithFormula('orderCount', 'countd([order_id])');
|
|
await wizardPage.setVisualization(WizardVisualizationId.CombinedChart);
|
|
});
|
|
|
|
datalensTest('DataLabels with prefix and postfix @screenshot', async ({page}) => {
|
|
const wizardPage = new WizardPage({page});
|
|
const preview = page.locator(slct(WizardPageQa.SectionPreview));
|
|
const previewLoader = preview.locator(slct(ChartKitQa.Loader));
|
|
|
|
await wizardPage.sectionVisualization.addFieldByClick(PlaceholderName.X, 'segment');
|
|
await wizardPage.sectionVisualization.addFieldByClick(PlaceholderName.Y, 'salesSum');
|
|
await wizardPage.sectionVisualization.addFieldByClick(
|
|
PlaceholderName.Labels,
|
|
'orderCount',
|
|
);
|
|
|
|
await wizardPage.visualizationItemDialog.open(PlaceholderName.Labels, 'orderCount');
|
|
await wizardPage.visualizationItemDialog.changeInputValue(
|
|
DialogFieldMainSectionQa.PrefixInput,
|
|
'>',
|
|
);
|
|
await wizardPage.visualizationItemDialog.clickOnApplyButton();
|
|
|
|
// Put the mouse away so that the presence of hover elements does not interfere with taking screenshots
|
|
await page.mouse.move(-1, -1);
|
|
await expect(previewLoader).not.toBeVisible();
|
|
await expect(preview).toHaveScreenshot();
|
|
|
|
await wizardPage.visualizationItemDialog.open(PlaceholderName.Labels, 'orderCount');
|
|
await wizardPage.visualizationItemDialog.changeInputValue(
|
|
DialogFieldMainSectionQa.PostfixInput,
|
|
'<',
|
|
);
|
|
await wizardPage.visualizationItemDialog.clickOnApplyButton();
|
|
|
|
// Put the mouse away so that the presence of hover elements does not interfere with taking screenshots
|
|
await page.mouse.move(-1, -1);
|
|
await expect(previewLoader).not.toBeVisible();
|
|
await expect(preview).toHaveScreenshot();
|
|
});
|
|
});
|
|
});
|