Allure report Test body displaying direct click element as argument. Unable to add descriptive steps #2813
Unanswered
nkr741
asked this question in
Questions & Support
Replies: 2 comments 4 replies
-
Could you please provide more details on the issue? A code sample and screenshot will help a lot. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Instead of calling import * as allure from "allure-js-commons";
import { Status } from "allure-js-commons";
it("Authentication", () => {
allure.step("Step 1", () => {
allure.step("Sub-step 1", () => {
});
allure.step("Sub-step 2", () => {
});
});
allure.logStep("Step 2", Status.SKIPPED);
}); For more details, please see the docs https://allurereport.org/docs/cypress/#divide-a-test-into-steps |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
"Why are arguments being displayed at the element level in the Allure report, instead of being grouped with the corresponding step? Is there a way to configure Allure to display arguments at the step level, providing a more concise and readable report?" I am trying to add multiple ways to get the steps in the report however it is giving me allure.step() is not a function. Can we discuss and resolve the issue so that it will be a great pleasure if it is resolved.
Beta Was this translation helpful? Give feedback.
All reactions