2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-03-24 01:15:40 +03:00
|
|
|
import { openHomePage } from '../libs/load-page';
|
2023-03-02 20:38:17 +03:00
|
|
|
import {
|
|
|
|
clickPageMoreActions,
|
|
|
|
getBlockSuiteEditorTitle,
|
|
|
|
newPage,
|
2023-03-28 08:25:16 +03:00
|
|
|
waitMarkdownImported,
|
2023-03-24 01:15:40 +03:00
|
|
|
} from '../libs/page-logic';
|
|
|
|
import { assertCurrentWorkspaceFlavour } from '../libs/workspace';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test.skip('New a page ,then open it and export html', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitMarkdownImported(page);
|
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await page
|
|
|
|
.getByPlaceholder('Title')
|
|
|
|
.fill('this is a new page to export html content');
|
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to export html content',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await cell.click();
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
const exportParentBtn = page.getByRole('tooltip', {
|
|
|
|
name: 'Add to favorites Convert to Edgeless Export Delete',
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
await exportParentBtn.click();
|
|
|
|
const [download] = await Promise.all([
|
|
|
|
page.waitForEvent('download'),
|
|
|
|
page.getByRole('button', { name: 'Export to HTML' }).click(),
|
|
|
|
]);
|
|
|
|
expect(download.suggestedFilename()).toBe(
|
|
|
|
'this is a new page to export html content.html'
|
|
|
|
);
|
|
|
|
});
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test.skip('New a page ,then open it and export markdown', async ({ page }) => {
|
|
|
|
await newPage(page);
|
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await page
|
|
|
|
.getByPlaceholder('Title')
|
|
|
|
.fill('this is a new page to export markdown content');
|
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to export markdown content',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
await cell.click();
|
|
|
|
await clickPageMoreActions(page);
|
|
|
|
const exportParentBtn = page.getByRole('tooltip', {
|
|
|
|
name: 'Add to favorites Convert to Edgeless Export Delete',
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
await exportParentBtn.click();
|
|
|
|
const [download] = await Promise.all([
|
|
|
|
page.waitForEvent('download'),
|
|
|
|
page.getByRole('button', { name: 'Export to Markdown' }).click(),
|
|
|
|
]);
|
|
|
|
expect(download.suggestedFilename()).toBe(
|
|
|
|
'this is a new page to export markdown content.md'
|
|
|
|
);
|
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|