Browse Source

chore: removed unwanted code

pull/7207/head
Ramesh Mane 10 months ago
parent
commit
fc1f1bdc4f
  1. 14
      tests/playwright/tests/db/general/cellSelection.spec.ts

14
tests/playwright/tests/db/general/cellSelection.spec.ts

@ -120,18 +120,4 @@ test.describe('Verify cell selection', () => {
expect(await grid.cell.verifyCellActiveSelected({ index: 0, columnHeader: 'LastUpdate' })); expect(await grid.cell.verifyCellActiveSelected({ index: 0, columnHeader: 'LastUpdate' }));
await dashboard.closeAllTabs(); await dashboard.closeAllTabs();
}); });
test('Suite-3', async () => {
// #8 when copied with mouse and paste with mouse, it paste correct text
await dashboard.treeView.openTable({ title: 'Customer' });
await grid.selectRange({
start: { index: 0, columnHeader: 'FirstName' },
end: { index: 1, columnHeader: 'LastName' },
});
expect(await grid.copyWithMouse({ index: 0, columnHeader: 'FirstName' })).toBe(
'MARY\tSMITH\n' + 'PATRICIA\tJOHNSON'
);
await dashboard.closeAllTabs();
});
}); });

Loading…
Cancel
Save