Files
notesnook/apps/web/__e2e__/models/context-menu.model.ts
Abdullah Atta 4f8c9eb76c web: fix tests
2026-05-30 11:00:35 +05:00

76 lines
2.2 KiB
TypeScript

/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2023 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import type { Page, Locator } from "@playwright/test";
import { getTestId } from "../utils";
import { iterateList } from "./utils";
export class ContextMenuModel {
readonly menuContainer: Locator;
readonly titleText: Locator;
constructor(private readonly page: Page) {
this.menuContainer = this.page.locator(`[role="menu"]`);
this.titleText = this.page.locator(getTestId(`menu-title`));
}
async title() {
if (!(await this.titleText.isVisible())) return null;
return await this.titleText.textContent();
}
async open(
locator: Locator,
button: "left" | "right" | "middle" | undefined = "right"
) {
await locator.click({ button });
await this.menuContainer.waitFor();
}
getItemByText(query: string) {
// for await (const item of iterateList(
// this.menuContainer.getByRole("menuitem")
// )) {
// const text = await item.textContent();
// if (query === text?.trim()) return item;
// }
return this.menuContainer.locator(`[role="menuitem"]`, {
hasText: new RegExp(`^${query}$`, "i")
});
}
async clickOnItem(id: string) {
await this.getItem(id).click();
}
getItem(id: string) {
return this.page.locator(getTestId(`menu-button-${id}`));
}
async hasItem(id: string) {
return (
(await this.getItem(id).isVisible()) &&
(await this.getItem(id).isEnabled())
);
}
async close() {
await this.page.keyboard.press("Escape");
}
}