Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Generating the Junit report from Playwright tests and uploading it to AIO Tests.

  • Generating Cucumber reports with Playwright + Cucumber and uploading it in AIO Tests

  • Using AIO Tests REST APIs to report results and much more, using the Playwright framework hooks.

...

Status Mapping JUnit → AIO Tests

JUnit XML

Description

AIO Tests Mapping

No tag inside <testcase> means Passed

Passed case

Passed

</skipped>

Skipped case either by @Ignore or others

Not Run

</failure>

Indicates that the test failed. A failure is a test which the code has explicitly failed by using the mechanisms for that purpose. e.g., via an assertEquals.

Failed

</error>

Indicates that the test errored. An errored test is one that had an unanticipated problem. e.g., an unchecked throwable;

Failed

Reporting results via Playwright Hooks and AIO Tests REST APIs

...