mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-01 06:02:34 +03:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import { Page } from '@playwright/test';
|
|
|
|
export async function clickSideBarSettingButton(page: Page) {
|
|
await page.getByTestId('slider-bar-workspace-setting-button').click();
|
|
}
|