mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 09:51:35 +03:00
61e37d8873
fix AF-1289 1. tested on 'webkit' 2. a few baseline test cases
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;
|
|
}
|