2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
2023-03-28 08:25:16 +03:00
|
|
|
import {
|
2023-09-02 08:57:04 +03:00
|
|
|
clickNewPageButton,
|
2023-03-28 08:25:16 +03:00
|
|
|
getBlockSuiteEditorTitle,
|
2023-10-27 12:06:59 +03:00
|
|
|
getPageOperationButton,
|
2023-09-02 06:31:07 +03:00
|
|
|
waitForEditorLoad,
|
2023-07-13 12:05:01 +03:00
|
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
|
|
import { expect } from '@playwright/test';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-07-13 15:41:46 +03:00
|
|
|
test('click btn bew page and open in tab', async ({ page, workspace }) => {
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(page);
|
2023-09-02 08:57:04 +03:00
|
|
|
await clickNewPageButton(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page');
|
|
|
|
const newPageUrl = page.url();
|
|
|
|
const newPageId = page.url().split('/').reverse()[0];
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-05-12 06:13:51 +03:00
|
|
|
await page.getByTestId('all-pages').click();
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-10-27 12:06:59 +03:00
|
|
|
await getPageOperationButton(page, newPageId).click();
|
2023-04-17 00:02:41 +03:00
|
|
|
const [newTabPage] = await Promise.all([
|
|
|
|
page.waitForEvent('popup'),
|
2023-09-06 07:36:43 +03:00
|
|
|
page.getByRole('menuitem', { name: 'Open in new tab' }).click(),
|
2023-04-17 00:02:41 +03:00
|
|
|
]);
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
expect(newTabPage.url()).toBe(newPageUrl);
|
2023-07-13 15:41:46 +03:00
|
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
|
2023-12-15 10:20:50 +03:00
|
|
|
expect(currentWorkspace.meta.flavour).toContain('local');
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|