mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 09:51:35 +03:00
137 lines
3.8 KiB
TypeScript
137 lines
3.8 KiB
TypeScript
import type { Locator, Page } from '@playwright/test';
|
|
import { expect } from '@playwright/test';
|
|
|
|
export async function waitForEditorLoad(page: Page) {
|
|
await page.waitForSelector('v-line', {
|
|
timeout: 20000,
|
|
});
|
|
}
|
|
|
|
export async function waitForAllPagesLoad(page: Page) {
|
|
// if filters tag is rendered, we believe all_pages is ready
|
|
await page.waitForSelector('[data-testid="create-first-filter"]', {
|
|
timeout: 20000,
|
|
});
|
|
}
|
|
|
|
export async function clickNewPageButton(page: Page, title?: string) {
|
|
// FiXME: when the page is in edgeless mode, clickNewPageButton will create a new edgeless page
|
|
const edgelessPage = page.locator('edgeless-editor');
|
|
if (await edgelessPage.isVisible()) {
|
|
await page.getByTestId('switch-page-mode-button').click({
|
|
delay: 100,
|
|
});
|
|
}
|
|
// fixme(himself65): if too fast, the page will crash
|
|
await page.getByTestId('sidebar-new-page-button').click({
|
|
delay: 100,
|
|
});
|
|
await waitForEmptyEditor(page);
|
|
if (title) {
|
|
await getBlockSuiteEditorTitle(page).fill(title);
|
|
}
|
|
}
|
|
|
|
export async function waitForEmptyEditor(page: Page) {
|
|
await expect(page.locator('.doc-title-container-empty')).toBeVisible();
|
|
}
|
|
|
|
export function getBlockSuiteEditorTitle(page: Page) {
|
|
return page.locator('doc-title .inline-editor').nth(0);
|
|
}
|
|
|
|
export async function type(page: Page, content: string, delay = 50) {
|
|
await page.keyboard.type(content, { delay });
|
|
}
|
|
|
|
export const createLinkedPage = async (page: Page, pageName?: string) => {
|
|
// fixme: workaround for @ popover not showing up when editor is not ready
|
|
await page.waitForTimeout(500);
|
|
await page.keyboard.type('@', { delay: 50 });
|
|
const linkedPagePopover = page.locator('.linked-doc-popover');
|
|
await expect(linkedPagePopover).toBeVisible();
|
|
await type(page, pageName || 'Untitled');
|
|
|
|
await page.keyboard.press('ArrowUp');
|
|
await page.keyboard.press('ArrowUp');
|
|
await page.keyboard.press('Enter', { delay: 50 });
|
|
};
|
|
|
|
export async function clickPageMoreActions(page: Page) {
|
|
return page
|
|
.getByTestId('header')
|
|
.getByTestId('header-dropDownButton')
|
|
.click();
|
|
}
|
|
|
|
export const getPageOperationButton = (page: Page, id: string) => {
|
|
return getPageItem(page, id).getByTestId('page-list-operation-button');
|
|
};
|
|
|
|
export const getPageItem = (page: Page, id: string) => {
|
|
return page.locator(`[data-page-id="${id}"][data-testid="page-list-item"]`);
|
|
};
|
|
|
|
export const getPageByTitle = (page: Page, title: string) => {
|
|
return page.getByTestId('page-list-item').getByText(title);
|
|
};
|
|
|
|
export const dragTo = async (
|
|
page: Page,
|
|
locator: Locator,
|
|
target: Locator,
|
|
location:
|
|
| 'top-left'
|
|
| 'top'
|
|
| 'bottom'
|
|
| 'center'
|
|
| 'left'
|
|
| 'right' = 'center'
|
|
) => {
|
|
await locator.hover();
|
|
await page.mouse.down();
|
|
await page.mouse.move(1, 1);
|
|
|
|
const targetElement = await target.boundingBox();
|
|
if (!targetElement) {
|
|
throw new Error('target element not found');
|
|
}
|
|
const position = (() => {
|
|
switch (location) {
|
|
case 'center':
|
|
return {
|
|
x: targetElement.width / 2,
|
|
y: targetElement.height / 2,
|
|
};
|
|
case 'top':
|
|
return { x: targetElement.width / 2, y: 1 };
|
|
case 'bottom':
|
|
return { x: targetElement.width / 2, y: targetElement.height - 1 };
|
|
|
|
case 'left':
|
|
return { x: 1, y: targetElement.height / 2 };
|
|
|
|
case 'right':
|
|
return { x: targetElement.width - 1, y: targetElement.height / 2 };
|
|
|
|
case 'top-left':
|
|
default:
|
|
return { x: 1, y: 1 };
|
|
}
|
|
})();
|
|
await target.hover({
|
|
position: position,
|
|
});
|
|
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();
|
|
};
|