mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 17:51:38 +03:00
4cbf4b74d6
close AF-1560
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
/* eslint-disable unicorn/prefer-dom-node-dataset */
|
|
import { expect, type Locator, type Page } from '@playwright/test';
|
|
|
|
export async function expandCollapsibleSection(page: Page, name: string) {
|
|
const divider = page.locator(`[data-collapsible]:has-text("${name}")`);
|
|
if ((await divider.getAttribute('data-collapsed')) === 'true') {
|
|
await divider.click();
|
|
}
|
|
await expect(divider).toHaveAttribute('data-collapsed', 'false');
|
|
const section = divider.locator(
|
|
'~ [data-testid="collapsible-section-content"]'
|
|
);
|
|
await expect(section).toBeVisible();
|
|
return section;
|
|
}
|
|
|
|
/**
|
|
* Click header "<" button
|
|
*/
|
|
export async function pageBack(page: Page) {
|
|
await page.getByTestId('page-header-back').tap();
|
|
}
|
|
|
|
export async function getAttrOfActiveElement(
|
|
page: Page,
|
|
attrName = 'data-testid'
|
|
) {
|
|
return await page.evaluate(name => {
|
|
const el = document.activeElement;
|
|
return el ? el.getAttribute(name) : '';
|
|
}, attrName);
|
|
}
|
|
|
|
/**
|
|
* Open the context menu of an explorer node
|
|
* @returns Menu Locator
|
|
*/
|
|
export async function openExplorerNodeMenu(page: Page, node: Locator) {
|
|
await node.getByTestId('menu-trigger').tap();
|
|
const menu = page.getByRole('dialog');
|
|
await expect(menu).toBeVisible();
|
|
return menu;
|
|
}
|