platform/qms-tests/sanity/tests/documents/common-documents-steps.ts
Alexander Platov 3775132777
UI, navigator, aside fixes (#7254)
Signed-off-by: Alexander Platov <alexander.platov@hardcoreeng.com>
2024-12-03 13:46:53 +07:00

49 lines
1.7 KiB
TypeScript

import { Page, test } from '@playwright/test'
import { DocumentsPage } from '../model/documents/documents-page'
import { NewCategory, NewDocument } from '../model/types'
import { NavigationMenuPage } from '../model/documents/navigation-menu-page'
import { CategoriesPage } from '../model/documents/categories-page'
import { CategoryCreatePopup } from '../model/documents/category-create-popup'
export async function prepareDocumentStep (
page: Page,
document: NewDocument,
stepNumber: number = 1,
startSecondStep?: boolean,
spaceName?: string
): Promise<void> {
await test.step(`${stepNumber}. Create a new document`, async () => {
const documentsPage = new DocumentsPage(page)
await documentsPage.buttonCreateDocument.click()
await documentsPage.createDocument(document, startSecondStep, spaceName)
})
}
export async function createTemplateStep (
page: Page,
title: string,
description: string,
category: string,
spaceName: string
): Promise<void> {
await test.step('2. Create a new template', async () => {
const documentsPage = new DocumentsPage(page)
await documentsPage.createTemplate(title, description, category, spaceName)
})
}
export async function prepareCategoryStep (page: Page, newCategory: NewCategory): Promise<void> {
await test.step('1. Create a new category', async () => {
const navigationMenuPage = new NavigationMenuPage(page)
await navigationMenuPage.buttonCategories.click()
const categoriesPage = new CategoriesPage(page)
await categoriesPage.buttonCreateCategory.click()
const categoryCreatePopup = new CategoryCreatePopup(page)
await categoryCreatePopup.createCategory(newCategory)
})
}