Skip to content
New issue

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

Не работают вложенные testit.step #66

Open
vladsolovev653 opened this issue Nov 1, 2024 · 0 comments
Open

Не работают вложенные testit.step #66

vladsolovev653 opened this issue Nov 1, 2024 · 0 comments

Comments

@vladsolovev653
Copy link

Предусловие:

  1. Есть класс BasePage с двумя методами, один из которых вызывает другой:
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

Шаги:

  1. Вызываю метод в коде теста:
import { test } from '@playwright/test';
import { LoginPage } from '../pages/LoginPage';


test('Проверка авторизации', async ({ page }) => {
  const loginPage = new LoginPage(page);
 
  await loginPage.open();
});
  1. Проверяю отчет в Test IT

Шаги не вложенны:
image

При этом во встроенном отчете Playwright все нормально:
Playwright_Test_Report_-_Google_Chrome-00-55-54

ОР: Вложенные шаги работают также как на адаптере для Pytest
ФР: Вложенные шаги не работают

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant