-
-
Notifications
You must be signed in to change notification settings - Fork 742
Closed
Description
What are you trying to achieve?
As I user I want to create custom steps in allure report
It would be nice to have allure api like
const allure = codeceptjs.container.plugins('allure');
allure.step("my awesome step", () => {
I.seeElement('.user');
I.seeElement('//button[contains(., "press me")]');
})
that produces allure step "my awesome step" in the report.