import { expect } from "@playwright/test"; import BasePage from "../../../Base"; import { ToolbarFieldsPage } from "./Fields"; import { ToolbarSortPage } from "./Sort"; import { ToolbarFilterPage } from "./Filter"; import { ToolbarShareViewPage } from "./ShareView"; import { ToolbarViewMenuPage } from "./ViewMenu"; import * as fs from "fs"; import { GridPage } from "../../Grid"; import { ToolbarActionsPage } from "./Actions"; import { GalleryPage } from "../../Gallery"; import { FormPage } from "../../Form"; export class ToolbarPage extends BasePage { readonly parent: GridPage | GalleryPage | FormPage; readonly fields: ToolbarFieldsPage; readonly sort: ToolbarSortPage; readonly filter: ToolbarFilterPage; readonly shareView: ToolbarShareViewPage; readonly viewsMenu: ToolbarViewMenuPage; readonly actions: ToolbarActionsPage; constructor(parent: GridPage | GalleryPage | FormPage) { super(parent.rootPage); this.parent = parent; this.fields = new ToolbarFieldsPage(this); this.sort = new ToolbarSortPage(this); this.filter = new ToolbarFilterPage(this); this.shareView = new ToolbarShareViewPage(this); this.viewsMenu = new ToolbarViewMenuPage(this); this.actions = new ToolbarActionsPage(this); } get() { return this.rootPage.locator(`.nc-table-toolbar`); } async clickActions() { const menuOpen = await this.actions.get().isVisible(); await this.get().locator(`button.nc-actions-menu-btn`).click(); // Wait for the menu to close if (menuOpen) await this.fields.get().waitFor({ state: "hidden" }); } async clickFields() { const menuOpen = await this.fields.get().isVisible(); await this.get().locator(`button:has-text("Fields")`).click(); // Wait for the menu to close if (menuOpen) await this.fields.get().waitFor({ state: "hidden" }); } async clickSort() { const menuOpen = await this.sort.get().isVisible(); await this.get().locator(`button:has-text("Sort")`).click(); // Wait for the menu to close if (menuOpen) await this.sort.get().waitFor({ state: "hidden" }); } async clickFilter() { const menuOpen = await this.filter.get().isVisible(); await this.get().locator(`button:has-text("Filter")`).click(); // Wait for the menu to close if (menuOpen) await this.filter.get().waitFor({ state: "hidden" }); } async clickShareView() { const menuOpen = await this.shareView.get().isVisible(); await this.get().locator(`button:has-text("Share View")`).click(); // Wait for the menu to close if (menuOpen) await this.shareView.get().waitFor({ state: "hidden" }); } async clickAddNewRow() { await this.get().locator(`.nc-toolbar-btn.nc-add-new-row-btn`).click(); } async clickDownload(type: string, verificationFile: string) { await this.get().locator(`.nc-toolbar-btn.nc-actions-menu-btn`).click(); const [download] = await Promise.all([ // Start waiting for the download this.rootPage.waitForEvent("download"), // Perform the action that initiates download this.rootPage .locator(`.nc-dropdown-actions-menu`) .locator(`li.ant-dropdown-menu-item:has-text("${type}")`) .click(), ]); // Save downloaded file somewhere await download.saveAs("./at.txt"); // verify downloaded content against expected content const expectedData = fs.readFileSync("./fixtures/expectedData.txt", "utf8"); const file = fs.readFileSync("./at.txt", "utf8"); await expect(file).toEqual(expectedData); } async verifyDownloadDisabled() { await this.get() .locator(`.nc-toolbar-btn.nc-actions-menu-btn`) .waitFor({ state: "hidden" }); } }