AFFiNE/tests/contact-us.spec.ts

23 lines
701 B
TypeScript
Raw Normal View History

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();
test.describe('Open contact us', () => {
2022-11-28 16:17:34 +03:00
test('Click right-bottom corner contact icon', 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 rightBottomContactUs = page.locator(
'[data-testid=right-bottom-contact-us-icon]'
);
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]'
);
2023-02-27 11:14:13 +03:00
await expect(contactUsModal).toContainText('Check Our Docs');
2022-11-28 16:17:34 +03:00
});
});