mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export async function clickCollaborationPanel(page: Page) {
|
|
await page.click('[data-tab-key="collaboration"]');
|
|
}
|