mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
22 lines
582 B
TypeScript
22 lines
582 B
TypeScript
import { expect, type Page } from '@playwright/test';
|
|
|
|
export async function clickEdgelessModeButton(page: Page) {
|
|
await page.getByTestId('switch-edgeless-mode-button').click({
|
|
delay: 50,
|
|
});
|
|
await expect(
|
|
page.locator(
|
|
'[data-testid="switch-edgeless-mode-button"][data-active="true"]'
|
|
)
|
|
).toBeVisible();
|
|
}
|
|
|
|
export async function clickPageModeButton(page: Page) {
|
|
page.getByTestId('switch-page-mode-button').click({
|
|
delay: 50,
|
|
});
|
|
await expect(
|
|
page.locator('[data-testid="switch-page-mode-button"][data-active="true"]')
|
|
).toBeVisible();
|
|
}
|