2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
import { test } from './libs/playwright.js';
|
2023-01-09 07:20:53 +03:00
|
|
|
import { loadPage } from './libs/load-page.js';
|
2022-11-28 16:17:34 +03:00
|
|
|
|
|
|
|
loadPage();
|
|
|
|
|
2023-02-05 12:53:14 +03:00
|
|
|
test.describe('Open contact us', () => {
|
2022-11-28 16:17:34 +03:00
|
|
|
test('Click right-bottom corner contact icon', async ({ page }) => {
|
|
|
|
const faqIcon = page.locator('[data-testid=faq-icon]');
|
|
|
|
const box = await faqIcon.boundingBox();
|
2022-12-30 16:40:15 +03:00
|
|
|
expect(box?.x).not.toBeUndefined();
|
2023-02-09 22:09:05 +03:00
|
|
|
await faqIcon.click();
|
2022-11-28 16:17:34 +03:00
|
|
|
|
2022-12-30 16:40:15 +03:00
|
|
|
await page.mouse.move((box?.x ?? 0) + 10, (box?.y ?? 0) + 10);
|
|
|
|
await page.mouse.move((box?.x ?? 0) + 5, (box?.y ?? 0) + 5);
|
2022-11-28 16:17:34 +03:00
|
|
|
const rightBottomContactUs = page.locator(
|
|
|
|
'[data-testid=right-bottom-contact-us-icon]'
|
|
|
|
);
|
2022-12-30 16:40:15 +03:00
|
|
|
expect(await rightBottomContactUs.isVisible()).toEqual(true);
|
2022-11-28 16:17:34 +03:00
|
|
|
|
|
|
|
await rightBottomContactUs.click();
|
|
|
|
const contactUsModal = page.locator(
|
|
|
|
'[data-testid=contact-us-modal-content]'
|
|
|
|
);
|
2022-12-30 16:40:15 +03:00
|
|
|
await expect(contactUsModal).toContainText('AFFiNE Community');
|
2022-11-28 16:17:34 +03:00
|
|
|
});
|
|
|
|
});
|