mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 09:14:57 +03:00
94d535f72b
Co-authored-by: DarkSky <darksky2048@gmail.com>
18 lines
540 B
TypeScript
18 lines
540 B
TypeScript
import type { Page } from '@playwright/test';
|
|
|
|
export async function clickSideBarSettingButton(page: Page) {
|
|
return page.getByTestId('slider-bar-workspace-setting-button').click();
|
|
}
|
|
|
|
export async function clickSideBarAllPageButton(page: Page) {
|
|
return page.getByTestId('all-pages').click();
|
|
}
|
|
|
|
export async function clickSideBarCurrentWorkspaceBanner(page: Page) {
|
|
return page.getByTestId('current-workspace').click();
|
|
}
|
|
|
|
export async function clickNewPageButton(page: Page) {
|
|
return page.getByTestId('new-page-button').click();
|
|
}
|