|
|
|
import { expect, test } from '@playwright/test';
|
|
|
|
import { DashboardPage } from '../pages/Dashboard';
|
|
|
|
import { ToolbarPage } from '../pages/Dashboard/common/Toolbar';
|
|
|
|
import setup from '../setup';
|
|
|
|
|
|
|
|
test.describe('Toolbar operations (GRID)', () => {
|
|
|
|
let dashboard: DashboardPage, toolbar: ToolbarPage;
|
|
|
|
let context: any;
|
|
|
|
|
|
|
|
async function validateFirstRow(value: string) {
|
|
|
|
await dashboard.grid.cell.verify({
|
|
|
|
index: 0,
|
|
|
|
columnHeader: 'Country',
|
|
|
|
value: value,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
|
|
context = await setup({ page });
|
|
|
|
dashboard = new DashboardPage(page, context.project);
|
|
|
|
toolbar = dashboard.grid.toolbar;
|
|
|
|
});
|
|
|
|
|
|
|
|
test('Hide, Sort, Filter', async () => {
|
|
|
|
// close 'Team & Auth' tab
|
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' });
|
|
|
|
|
|
|
|
await dashboard.treeView.openTable({ title: 'Country' });
|
|
|
|
|
|
|
|
await dashboard.grid.column.verify({
|
|
|
|
title: 'LastUpdate',
|
|
|
|
isVisible: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
// hide column
|
|
|
|
await toolbar.fields.toggle({ title: 'LastUpdate' });
|
|
|
|
await dashboard.grid.column.verify({
|
|
|
|
title: 'LastUpdate',
|
|
|
|
isVisible: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
// un-hide column
|
|
|
|
await toolbar.fields.toggle({ title: 'LastUpdate' });
|
|
|
|
await dashboard.grid.column.verify({
|
|
|
|
title: 'LastUpdate',
|
|
|
|
isVisible: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
await validateFirstRow('Afghanistan');
|
|
|
|
// Sort column
|
|
|
|
await toolbar.sort.add({ columnTitle: 'Country', isAscending: false, isLocallySaved: false });
|
|
|
|
await validateFirstRow('Zambia');
|
|
|
|
|
|
|
|
// reset sort
|
|
|
|
await toolbar.sort.reset();
|
|
|
|
await validateFirstRow('Afghanistan');
|
|
|
|
|
|
|
|
// Filter column
|
|
|
|
await toolbar.clickFilter();
|
|
|
|
await toolbar.filter.add({
|
|
|
|
columnTitle: 'Country',
|
|
|
|
value: 'India',
|
|
|
|
opType: 'is equal',
|
|
|
|
isLocallySaved: false,
|
|
|
|
});
|
|
|
|
await toolbar.clickFilter();
|
|
|
|
|
|
|
|
await validateFirstRow('India');
|
|
|
|
|
|
|
|
// Reset filter
|
|
|
|
await toolbar.filter.reset();
|
|
|
|
await validateFirstRow('Afghanistan');
|
|
|
|
|
|
|
|
await dashboard.closeTab({ title: 'Country' });
|
|
|
|
});
|
|
|
|
|
|
|
|
test('row height', async () => {
|
|
|
|
// define an array of row heights
|
|
|
|
const rowHeight = [
|
|
|
|
{ title: 'Short', height: '1.5rem' },
|
|
|
|
{ title: 'Medium', height: '3rem' },
|
|
|
|
{ title: 'Tall', height: '6rem' },
|
|
|
|
{ title: 'Extra', height: '9rem' },
|
|
|
|
];
|
|
|
|
|
|
|
|
// close 'Team & Auth' tab
|
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' });
|
|
|
|
await dashboard.treeView.openTable({ title: 'Country' });
|
|
|
|
|
|
|
|
// set row height & verify
|
|
|
|
for (let i = 0; i < rowHeight.length; i++) {
|
|
|
|
await toolbar.clickRowHeight();
|
|
|
|
await toolbar.rowHeight.click({ title: rowHeight[i].title });
|
|
|
|
await new Promise(resolve => setTimeout(resolve, 150));
|
|
|
|
await dashboard.grid.rowPage.getRecordHeight(0).then(height => {
|
|
|
|
expect(height).toBe(rowHeight[i].height);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|