We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Предусловие:
export abstract class BasePage { protected readonly page: Page; private readonly title: string; private readonly url: string; constructor(page: Page, title: string, url: string = '') { this.page = page; this.title = title; this.url = url; } public async open() { await testit.step(`Открыть страницу "${this.url}"`, async () => { await this.page.goto(this.url); await this.shouldBeLoaded(); }); } public async shouldBeLoaded() { await testit.step(`Страница успешно открылась`, async () => { await this.shouldHaveUrl(); await this.shouldHaveTitle(); }); } }
То есть testit.step внутри testit.step
Шаги:
import { test } from '@playwright/test'; import { LoginPage } from '../pages/LoginPage'; test('Проверка авторизации', async ({ page }) => { const loginPage = new LoginPage(page); await loginPage.open(); });
Шаги не вложенны:
При этом во встроенном отчете Playwright все нормально:
ОР: Вложенные шаги работают также как на адаптере для Pytest ФР: Вложенные шаги не работают
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Предусловие:
То есть testit.step внутри testit.step
Шаги:
Шаги не вложенны:
При этом во встроенном отчете Playwright все нормально:
ОР: Вложенные шаги работают также как на адаптере для Pytest
ФР: Вложенные шаги не работают
The text was updated successfully, but these errors were encountered: