Hi, thank you for the video:) I do not know the reason, but the Allure report does not show the steps, screenshots and videos for the test cases for Cypress version 13. It is successfully generated but with empty data for test cases. How to fix that?
I believe that if i change the script to: "browser:chrome": "npx cypress run --browser=chrome --headed --reporter mocha-allure-reporter" It will run all your tests, in the video he specified a spec that he wanted to test but if don't it will run all of them by default.
when we use the second command then it show : " is not recognized as an internal or external command, operable program or batch file." can you please help?
npm install --save-dev mocha-allure-reporter allure-commandline The above only command you run for allure installation "browser:chrome": "npx cypress run --browser=chrome --headed --spec cypress/e2e/advanced-examples/actions.cy.js --reporter mocha-allure-reporter", The above command paste in Playwright.json file under scripts: "report:allure": "allure generate allure-results --clean -o allure-report && allure open allure-report" The above command paste in Playwright.json file under scripts: To run the test cases: run the below command in your terminal: npm run browser:chrome once test cases run completes: then run below command in your terminal will give the Allure results: npm run report:allure
How can I make the name of the file created in the Allure-Results folder to be the same with the spec file in cases where I have to run multiple spec file ?
Thank you very much! It helped a lot. It worked here!!
Thanks for sharing☘️
Thank you so much for making this video crisp and crystal clear
Thanks it worked me Boss. Simple and easy to Understand
God bless you my friend! Hugs from BR
This saved me a lot of time. Thanks.
Hi, thank you for the video:) I do not know the reason, but the Allure report does not show the steps, screenshots and videos for the test cases for Cypress version 13. It is successfully generated but with empty data for test cases.
How to fix that?
Can you please re-check the installation process?
i have checked. Now it is not empty but video is never recorded. Seems video recording in Allure is not working for Cypress 13 version.
@@iranamiriyeva crie um env embaixo setupNodeEvents:
setupNodeEvents(on, config) {
...
return config;
},
env: {
allureResultsPath: "allure-results",
allureClearSkippedTests: true,
allureAddVideoOnPass: true,
videoOnFailOnly: true,
},
@@iranamiriyeva hi, how did you solve it?
Thanks mate, great video! Working 100%
Thank you very much!!
Thank you very much!! Right on time when I need it. How to run all tests at the same time when it comes to cypress-cucumber?
I believe that if i change the script to: "browser:chrome": "npx cypress run --browser=chrome --headed --reporter mocha-allure-reporter"
It will run all your tests, in the video he specified a spec that he wanted to test but if don't it will run all of them by default.
when we use the second command then it show : " is not recognized as an internal or external command,
operable program or batch file."
can you please help?
getting same error on me
npm install --save-dev mocha-allure-reporter allure-commandline
The above only command you run for allure installation
"browser:chrome": "npx cypress run --browser=chrome --headed --spec cypress/e2e/advanced-examples/actions.cy.js --reporter mocha-allure-reporter",
The above command paste in Playwright.json file under scripts:
"report:allure": "allure generate allure-results --clean -o allure-report && allure open allure-report"
The above command paste in Playwright.json file under scripts:
To run the test cases: run the below command in your terminal:
npm run browser:chrome
once test cases run completes: then run below command in your terminal will give the Allure results:
npm run report:allure
nice one.
How can I make the name of the file created in the Allure-Results folder to be the same with the spec file in cases where I have to run multiple spec file ?
How to add screenshot and videos in allure report
Great video, thanks a lot for sharing! How can I add videos and the test steps to my report?
Screenshots cannot be found in this report
How to generate code coverage report for component testing.
How can we share this allure report ? Because When I share it to another person it shows "Allure report Unknown".
run your test on jenkins and share the jenkins Build
how to maintain the history. How did you posted on that server in the link?
Thank you so much
will this work on cypress-parallel?
I have not tried in cypress parallel