mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-17 14:27:02 +08:00
fix(core): image preview flaky (#6292)
This commit is contained in:
@@ -87,3 +87,13 @@ export const dragTo = async (page: Page, locator: Locator, target: Locator) => {
|
||||
await target.hover();
|
||||
await page.mouse.up();
|
||||
};
|
||||
|
||||
// sometimes editor loses focus, this function is to focus the editor
|
||||
export const focusInlineEditor = async (page: Page) => {
|
||||
await page
|
||||
.locator(
|
||||
`.affine-paragraph-rich-text-wrapper:has(.visible):has-text("Type '/' for commands")`
|
||||
)
|
||||
.locator('.inline-editor')
|
||||
.focus();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user