41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import {Page} from '@playwright/test';
|
|
|
|
import WizardPage from '../../../page-objects/wizard/WizardPage';
|
|
import {RobotChartsWizardUrls} from '../../../utils/constants';
|
|
import datalensTest from '../../../utils/playwright/globalTestDefinition';
|
|
import {openTestPage, slct} from '../../../utils';
|
|
import {ChartKitTableQa} from '../../../../src/shared';
|
|
|
|
datalensTest.describe('Wizard - Pivot table, markdown', () => {
|
|
datalensTest(
|
|
'The column header should display markdown correctly',
|
|
async ({page}: {page: Page}) => {
|
|
const wizardPage = new WizardPage({page});
|
|
|
|
await openTestPage(page, RobotChartsWizardUrls.PivotTableWithMarkdown);
|
|
|
|
const rows = await wizardPage.chartkit.getHeadRowsHtml();
|
|
|
|
expect(rows[0][1]).toContain('<b>Furniture</b>');
|
|
},
|
|
);
|
|
|
|
datalensTest(
|
|
'The line header should display markdown correctly',
|
|
async ({page}: {page: Page}) => {
|
|
const wizardPage = new WizardPage({page});
|
|
|
|
await openTestPage(page, RobotChartsWizardUrls.PivotTableWithMarkdown);
|
|
|
|
const cellContent = wizardPage.chartkit
|
|
.getTableLocator()
|
|
.locator('tbody')
|
|
.locator(slct(ChartKitTableQa.CellContent))
|
|
.first();
|
|
const cellContentHtml = await cellContent.innerHTML();
|
|
|
|
expect(cellContentHtml).toEqual('<b>Consumer</b>');
|
|
},
|
|
);
|
|
});
|