mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 20:21:37 +03:00
15 lines
449 B
TypeScript
15 lines
449 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
import { getMetas } from './utils';
|
|
|
|
export async function openHomePage(page: Page) {
|
|
await page.goto('http://localhost:8080');
|
|
await page.waitForSelector('#__next');
|
|
}
|
|
|
|
export async function initHomePageWithPinboard(page: Page) {
|
|
await openHomePage(page);
|
|
await page.waitForSelector('[data-testid="sidebar-pinboard-container"]');
|
|
return (await getMetas(page)).find(m => m.isRootPinboard);
|
|
}
|