mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-24 16:45:05 +03:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export async function clickCollaborationPanel(page: Page) {
|
|
await page.click('[data-tab-key="collaboration"]');
|
|
}
|
|
|
|
export async function clickPublishPanel(page: Page) {
|
|
await page.click('[data-tab-key="publish"]');
|
|
}
|