allure-js
allure-js copied to clipboard
Can the default steps be disabled from allure-playwright reports?
We would like to add our own steps in allure reports using "test.step" instead of having the built-in detailed steps which are already added by the playwright for every browser action performed. Is there a way to disable it?
Any updates on this?
I also want to know about this. I would like to customize the reporter. For instance, I don't want to have every browser action in the report as a step or attach every stdout
any updates ?
There is a reporter option called detail
. You can set it to false to disable reporting of playwright API calls and only include test.step
actions in the report.
See https://github.com/allure-framework/allure-js/tree/master/packages/allure-playwright#reporter-options for details
alright ! thanks for quick response.
@autTestUser, @StasGrishaevTutu does the proposed solution solve the initial problem?
@autTestUser, @StasGrishaevTutu does the proposed solution solve the initial problem?
yep, solution works for me.