Allure Report Generation with Cypress Version 13

Sdílet
Vložit
  • čas přidán 23. 08. 2024
  • Dependencies to install:
    --------------------------------------------
    npm install --save-dev mocha-allure-reporter allure-commandline
    Script for test execution:
    -------------------------------------------
    "browser:chrome": "npx cypress run --browser=chrome --headed --spec cypress/e2e/advanced-examples/actions.cy.js --reporter mocha-allure-reporter",
    Allure report generate script:
    -------------------------------------------------------
    "report:allure": "allure generate allure-results --clean -o allure-report && allure open allure-report"
    #automation #automationtesting #cypressio #nodejs #visualstudiocode #javascript #allurereport #allure #cypressallure

Komentáře • 19

  • @YasminJandriele
    @YasminJandriele Před 19 hodinami

    God bless you my friend! Hugs from BR

  • @davidstoleson792
    @davidstoleson792 Před 17 dny

    This saved me a lot of time. Thanks.

  • @shashank6803
    @shashank6803 Před 2 měsíci +1

    Thank you so much for making this video crisp and crystal clear

  • @user-ew6vs5lt5b
    @user-ew6vs5lt5b Před 6 měsíci +1

    Thanks mate, great video! Working 100%

  • @TurskoBalkanskiRecepti
    @TurskoBalkanskiRecepti Před 6 měsíci +1

    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?

    • @gustavoguntzel2418
      @gustavoguntzel2418 Před 6 měsíci +1

      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.

  • @gustavoguntzel2418
    @gustavoguntzel2418 Před 6 měsíci +1

    Great video, thanks a lot for sharing! How can I add videos and the test steps to my report?

  • @iranamiriyeva
    @iranamiriyeva Před 6 měsíci +2

    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?

    • @aholearnings6620
      @aholearnings6620  Před 6 měsíci +1

      Can you please re-check the installation process?

    • @iranamiriyeva
      @iranamiriyeva Před 6 měsíci

      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.

  • @RIthon779
    @RIthon779 Před 6 měsíci

    Thank you so much

  • @chijiokenjoku6265
    @chijiokenjoku6265 Před 3 měsíci

    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 ?

  • @ajeshmohan20
    @ajeshmohan20 Před 2 měsíci

    How to add screenshot and videos in allure report

  • @SaadNivoda
    @SaadNivoda Před 3 měsíci

    how to maintain the history. How did you posted on that server in the link?

  • @shubhampandkar6981
    @shubhampandkar6981 Před 6 měsíci

    How to generate code coverage report for component testing.

  • @ShubhamGore-ht1cw
    @ShubhamGore-ht1cw Před 5 měsíci

    How can we share this allure report ? Because When I share it to another person it shows "Allure report Unknown".

  • @aldrine.tolentino
    @aldrine.tolentino Před 6 měsíci +1

    will this work on cypress-parallel?