2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-02-17 05:43:52 +03:00
|
|
|
import { loadPage } from './libs/load-page';
|
2023-02-17 10:33:32 +03:00
|
|
|
import { test } from './libs/playwright';
|
2022-11-28 16:17:34 +03:00
|
|
|
|
|
|
|
loadPage();
|
|
|
|
|
2023-02-05 12:53:14 +03:00
|
|
|
test.describe('Shortcuts Modal', () => {
|
2022-11-28 16:17:34 +03:00
|
|
|
test('Open shortcuts modal', async ({ page }) => {
|
2023-02-15 10:21:29 +03:00
|
|
|
await page.locator('[data-testid=help-island]').click();
|
2022-11-28 16:17:34 +03:00
|
|
|
|
|
|
|
const shortcutsIcon = page.locator('[data-testid=shortcuts-icon]');
|
2022-12-30 16:40:15 +03:00
|
|
|
expect(await shortcutsIcon.isVisible()).toEqual(true);
|
2022-11-28 16:17:34 +03:00
|
|
|
|
|
|
|
await shortcutsIcon.click();
|
2022-12-30 16:40:15 +03:00
|
|
|
await page.waitForTimeout(800);
|
2022-11-28 16:17:34 +03:00
|
|
|
const shortcutsModal = page.locator('[data-testid=shortcuts-modal]');
|
|
|
|
await expect(shortcutsModal).toContainText('Keyboard Shortcuts');
|
|
|
|
});
|
|
|
|
});
|