Browse Source

test: modify meta sync test for sticky changes

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/5060/head
mertmit 1 year ago
parent
commit
3086471157
  1. 6
      tests/playwright/tests/metaSync.spec.ts

6
tests/playwright/tests/metaSync.spec.ts

@ -252,18 +252,18 @@ test.describe('Meta sync', () => {
await dashboard.treeView.openTable({ title: 'Table1' });
await dashboard.grid.toolbar.clickFields();
await dashboard.grid.toolbar.fields.click({ title: 'Col1' });
await dashboard.grid.toolbar.fields.click({ title: 'Col2' });
await dashboard.grid.toolbar.clickFields();
await dashboard.grid.toolbar.sort.add({
columnTitle: 'Col1',
columnTitle: 'Col2',
isAscending: false,
isLocallySaved: false,
});
await dashboard.grid.toolbar.clickFilter();
await dashboard.grid.toolbar.filter.add({
columnTitle: 'Col1',
columnTitle: 'Col2',
opType: '>=',
value: '5',
isLocallySaved: false,

Loading…
Cancel
Save