What are you trying to achieve?
Get the I.say step in Allure report.
What do you get instead?
Miss I.say step inside Allure report.
Console output with npx codeceptjs run --plugins allure --steps:
I click "[data-test-selector=submit-
Вижу ошибку
I wait for element "[data-test-selector=username-error]", 4
Test source code:
# auth_test.js
Feature('Auth');
Scenario('Demo.', async (I) => {
I.click(loginPage.submitButton);
I.say('Вижу ошибку логина!');
I.waitForElement(loginPage.error.login, 4);
});
Allure report output:

Details
- CodeceptJS version: v2.3.3
- NodeJS Version: v13.3.0
- Operating System: Ubuntu, Linux 4.15.0-72-generic x86_64
- puppeteer: v1.20.0
- Configuration file:
plugins: {
allure: {
enabled: true,
outputDir: './output/allure-results'
}
}
What are you trying to achieve?
Get the
I.saystep in Allure report.What do you get instead?
Miss
I.saystep inside Allure report.Details