多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

162 lines
4.5 KiB

import { Page, test } from '@playwright/test';
import { BaseType, ProjectTypes } from 'nocodb-sdk';
import { DashboardPage } from '../../pages/Dashboard';
import setup, { NcContext } from '../../setup';
test.describe('Tiptap:External link test and headers', () => {
let dashboard: DashboardPage;
let context: NcContext;
let base: BaseType;
test.beforeEach(async ({ page }) => {
context = await setup({ page, baseType: ProjectTypes.DOCUMENTATION });
base = context.base;
dashboard = new DashboardPage(page, context.base);
});
test('Tiptap:External link test', async ({ page }) => {
const openedPage = await dashboard.docs.openedPage;
await dashboard.sidebar.docsSidebar.createPage({
baseTitle: base.title as any,
title: 'page',
});
await page.waitForTimeout(400);
const embedUrl = 'https://docs.google.com/document/d/1PEAuWDF-w2q5QEPGRiAJ_CSSrz0G6eM8AD0hkTmErt0/preview';
await openedPage.tiptap.addNewNode({
type: 'Embed iframe',
link: embedUrl,
});
await openedPage.tiptap.verifyNode({
index: 0,
type: 'Embed iframe',
content: embedUrl,
});
await page.keyboard.press('Meta+z');
await openedPage.tiptap.addNewNode({
type: 'Embed iframe',
link: 'invalid',
noVerify: true,
});
await openedPage.tiptap.verifyErrorCommandMenu({ error: 'Given link is not valid' });
await openedPage.tiptap.clickBackButtonLinkCommandMenu();
await page.waitForTimeout(400);
await openedPage.tiptap.clickNode({
index: 0,
start: false,
});
await page.keyboard.press('Escape');
await openedPage.tiptap.verifyCommandMenuOpened({
isVisible: false,
});
await page.waitForTimeout(400);
await openedPage.copyToClipboard({
text: embedUrl,
});
// TODO: Does not work in headless mode
// await page.keyboard.press('Meta+v');
// await openedPage.tiptap.verifyNode({
// index: 0,
// type: 'Embed iframe',
// content: embedUrl,
// });
});
test('Tiptap:Header test', async () => {
await verifyHeader({ page: dashboard.rootPage, type: 'menu' });
await verifyHeader({ page: dashboard.rootPage, type: 'type' });
});
async function createHeaderThroughMenu(type: 'Heading 1' | 'Heading 2' | 'Heading 3') {
const openedPage = await dashboard.docs.openedPage;
await openedPage.tiptap.addNewNode({
type,
});
}
async function createHeaderThroughTyping(type: 'Heading 1' | 'Heading 2' | 'Heading 3') {
const openedPage = await dashboard.docs.openedPage;
await openedPage.tiptap.clickLastNode({
start: true,
});
const level = Number(type.split(' ')[1]);
const start = '#'.repeat(level);
await openedPage.rootPage.keyboard.type(start + ' ');
}
async function verifyHeader({ page, type }: { page: Page; type: 'menu' | 'type' }) {
const openedPage = await dashboard.docs.openedPage;
await dashboard.sidebar.docsSidebar.createPage({
baseTitle: base.title as any,
title: 'page',
});
const createHeaderNode = async (headerType: 'Heading 1' | 'Heading 2' | 'Heading 3') => {
if (type === 'menu') {
await createHeaderThroughMenu(headerType);
} else if (type === 'type') {
await createHeaderThroughTyping(headerType);
}
};
await createHeaderNode('Heading 1');
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 1',
});
await openedPage.tiptap.fillContent({ content: 'Header 1', index: 0, type: 'Heading 1' });
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 1',
content: 'Header 1',
});
await openedPage.tiptap.clearContent();
await createHeaderNode('Heading 2');
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 2',
});
await openedPage.tiptap.fillContent({ content: 'Header 2', index: 0, type: 'Heading 2' });
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 2',
content: 'Header 2',
});
await openedPage.tiptap.clearContent();
await createHeaderNode('Heading 3');
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 3',
});
await openedPage.tiptap.fillContent({ content: 'Header 3', index: 0, type: 'Heading 3' });
await openedPage.tiptap.verifyHeaderNode({
index: 0,
type: 'Heading 3',
content: 'Header 3',
});
await openedPage.tiptap.clearContent();
}
});