test: download csv

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
Raju Udava
2022-10-20 16:50:11 +05:30
committed by Muhammed Mustafa
parent dc3f150c06
commit 31917d23ab
3 changed files with 172 additions and 6 deletions

View File

@@ -35,4 +35,15 @@ test.describe("Grid view locked", () => {
await dashboard.grid.toolbar.viewsMenu.verifyCollaborativeMode();
});
test("Download CSV", async () => {
// close 'Team & Auth' tab
await dashboard.closeTab({ title: "Team & Auth" });
await dashboard.treeView.openTable({ title: "Country" });
await dashboard.grid.toolbar.viewsMenu.click({
menu: "Download",
subMenu: "Download as CSV",
});
});
});