mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-26 17:03:46 +03:00
23 lines
701 B
TypeScript
23 lines
701 B
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { loadPage } from './libs/load-page';
|
|
import { test } from './libs/playwright';
|
|
|
|
loadPage();
|
|
|
|
test.describe('Open contact us', () => {
|
|
test('Click right-bottom corner contact icon', async ({ page }) => {
|
|
await page.locator('[data-testid=help-island]').click();
|
|
const rightBottomContactUs = page.locator(
|
|
'[data-testid=right-bottom-contact-us-icon]'
|
|
);
|
|
expect(await rightBottomContactUs.isVisible()).toEqual(true);
|
|
|
|
await rightBottomContactUs.click();
|
|
const contactUsModal = page.locator(
|
|
'[data-testid=contact-us-modal-content]'
|
|
);
|
|
await expect(contactUsModal).toContainText('Check Our Docs');
|
|
});
|
|
});
|