mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 19:42:19 +03:00
16 lines
574 B
TypeScript
16 lines
574 B
TypeScript
|
/* eslint-disable unicorn/prefer-dom-node-dataset */
|
||
|
import { expect, 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;
|
||
|
}
|