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-24 01:15:40 +03:00
|
|
|
} from '../libs/page-logic';
|
|
|
|
import { test } from '../libs/playwright';
|
|
|
|
import { assertCurrentWorkspaceFlavour } from '../libs/workspace';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-02-05 12:53:14 +03:00
|
|
|
test.describe('Local first export page', () => {
|
2023-02-22 05:44:18 +03:00
|
|
|
test.skip('New a page ,then open it and export html', async ({ page }) => {
|
2023-03-24 01:15:40 +03:00
|
|
|
await openHomePage(page);
|
2023-01-01 20:17:28 +03:00
|
|
|
await newPage(page);
|
2023-03-02 20:38:17 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
2022-12-30 16:40:15 +03:00
|
|
|
await page
|
|
|
|
.getByPlaceholder('Title')
|
|
|
|
.fill('this is a new page to export html content');
|
|
|
|
await page.getByRole('link', { name: 'All pages' }).click();
|
|
|
|
|
|
|
|
const cell = page.getByRole('cell', {
|
|
|
|
name: 'this is a new page to export html content',
|
|
|
|
});
|
|
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
|
|
|
|
await cell.click();
|
2022-12-30 21:03:48 +03:00
|
|
|
await clickPageMoreActions(page);
|
2022-12-30 16:40:15 +03:00
|
|
|
const exportParentBtn = page.getByRole('tooltip', {
|
2023-02-09 10:46:59 +03:00
|
|
|
name: 'Add to favorites Convert to Edgeless Export Delete',
|
2022-12-30 16:40:15 +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'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-02-22 05:44:18 +03:00
|
|
|
test.skip('New a page ,then open it and export markdown', async ({
|
|
|
|
page,
|
|
|
|
}) => {
|
2022-12-30 21:03:48 +03:00
|
|
|
await newPage(page);
|
2023-03-02 20:38:17 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
2022-12-30 16:40:15 +03:00
|
|
|
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();
|
|
|
|
|
|
|
|
await cell.click();
|
2022-12-30 21:03:48 +03:00
|
|
|
await clickPageMoreActions(page);
|
2022-12-30 16:40:15 +03:00
|
|
|
const exportParentBtn = page.getByRole('tooltip', {
|
2023-02-09 10:46:59 +03:00
|
|
|
name: 'Add to favorites Convert to Edgeless Export Delete',
|
2022-12-30 16:40:15 +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'
|
|
|
|
);
|
2023-03-23 07:22:29 +03:00
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
|
|
|
});
|