2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
|
|
import { waitEditorLoad } from '@affine-test/kit/utils/page-logic';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('Open shortcuts modal', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await page.locator('[data-testid=help-island]').click();
|
2022-11-28 16:17:34 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
const shortcutsIcon = page.locator('[data-testid=shortcuts-icon]');
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
expect(await shortcutsIcon.isVisible()).toEqual(true);
|
2022-11-28 16:17:34 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await shortcutsIcon.click();
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
const shortcutsModal = page.locator('[data-testid=shortcuts-modal]');
|
2023-06-21 14:57:59 +03:00
|
|
|
await expect(shortcutsModal).toContainText('Page');
|
2022-11-28 16:17:34 +03:00
|
|
|
});
|