Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
georgegevoian committed Sep 14, 2023
1 parent 0fba176 commit 3e16183
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/nbrowser/CopyPasteColumnOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ describe('CopyPasteColumnOptions', function() {

// Copy all the data from Table1 to Table2, which will copy the column options
await gu.selectSectionByTitle("TABLE1");
await gu.getCell(0, 1).click();
await gu.withSafeClipboard(async (cb) => {
await gu.sendKeys(await gu.selectAllKey());
await cb.copy();
await gu.selectSectionByTitle("TABLE2");
await gu.getCell(0, 1).click();
await cb.paste();
});
await gu.waitForServer();
Expand Down

0 comments on commit 3e16183

Please sign in to comment.