behavex icon indicating copy to clipboard operation
behavex copied to clipboard

Displaying test outputs in BehaveX for parallel runs

Open dron4ik86 opened this issue 2 years ago • 0 comments

Hi, I've been running parallel tests using BehaveX and I noticed that the output in the console isn't showing the details of which test scenarios passed or failed. Normally, in Behave, the console output clearly lists each step of the scenarios along with their status, as shown below

@sanity
Scenario: Login Unhappy Flow - Invalid User Password             # features/tests/login_page/login_tests.feature:49
  Given Go to Login Page                                         # features/steps/login/login_steps.py:7
  And I generate a random email                                  # features/steps/login/login_steps.py:52
  And I generate a random password                               # features/steps/login/login_steps.py:59
  When I attempt to log in with the generated email and password # features/steps/login/login_steps.py:66
  Then I should see an error message "Wrong email or password."  # features/steps/login/login_steps.py:78

However, when running tests in parallel with BehaveX, this detailed step-by-step output is not displayed.

dron4ik86 avatar Apr 11 '24 03:04 dron4ik86