Data-driven API testing framework, where you can define your APIs and scenarios and execute it without much code. A open source tool from http://techconative.com/
When we're calling Allure.step, we're calling it without second param, which is considered success by default even if the step fails. Example, the below screenshot.
Source of issue,
Solution:
We have to call the step method with the status of the step. Not just for the the above allure logging. This need to be taken care in all the places where we log the allure status.
Problem:
When we're calling
Allure.step
, we're calling it without second param, which is considered success by default even if the step fails. Example, the below screenshot.Source of issue,
Solution: We have to call the
step
method with the status of the step. Not just for the the above allure logging. This need to be taken care in all the places where we log the allure status.