mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 16:22:21 +03:00
23 lines
810 B
TypeScript
23 lines
810 B
TypeScript
import { expect } from '@playwright/test';
|
|
import { test } from './libs/playwright.js';
|
|
import { loadPage } from './libs/load-page.js';
|
|
|
|
loadPage();
|
|
|
|
test.describe('Shortcuts Modal', () => {
|
|
test('Open shortcuts modal', async ({ page }) => {
|
|
const faqIcon = page.locator('[data-testid=faq-icon]');
|
|
const box = await faqIcon.boundingBox();
|
|
expect(box?.x).not.toBeUndefined();
|
|
await page.mouse.move((box?.x ?? 0) + 5, (box?.y ?? 0) + 5);
|
|
|
|
const shortcutsIcon = page.locator('[data-testid=shortcuts-icon]');
|
|
expect(await shortcutsIcon.isVisible()).toEqual(true);
|
|
|
|
await shortcutsIcon.click();
|
|
await page.waitForTimeout(800);
|
|
const shortcutsModal = page.locator('[data-testid=shortcuts-modal]');
|
|
await expect(shortcutsModal).toContainText('Keyboard Shortcuts');
|
|
});
|
|
});
|