Allure Report Generation with Cypress Version 13

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 31

  • @AndersonSantos-ht3qw
    @AndersonSantos-ht3qw Месяц назад +1

    Thank you very much! It helped a lot. It worked here!!

  • @soheilashahmoradi5867
    @soheilashahmoradi5867 Месяц назад +1

    Thanks for sharing☘️

  • @shashank6803
    @shashank6803 7 месяцев назад +1

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

  • @rahulv374
    @rahulv374 2 месяца назад +1

    Thanks it worked me Boss. Simple and easy to Understand

  • @YasminJandriele
    @YasminJandriele 5 месяцев назад +1

    God bless you my friend! Hugs from BR

  • @davidstoleson792
    @davidstoleson792 5 месяцев назад +1

    This saved me a lot of time. Thanks.

  • @iranamiriyeva
    @iranamiriyeva 11 месяцев назад +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  11 месяцев назад +1

      Can you please re-check the installation process?

    • @iranamiriyeva
      @iranamiriyeva 11 месяцев назад

      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.

    • @RafaelTeles-o8h
      @RafaelTeles-o8h 3 месяца назад

      ​@@iranamiriyeva crie um env embaixo setupNodeEvents:
      setupNodeEvents(on, config) {
      ...
      return config;
      },
      env: {
      allureResultsPath: "allure-results",
      allureClearSkippedTests: true,
      allureAddVideoOnPass: true,
      videoOnFailOnly: true,
      },

    • @JoeruQGz
      @JoeruQGz 3 месяца назад

      @@iranamiriyeva hi, how did you solve it?

  • @Sergio-i8r1x
    @Sergio-i8r1x 11 месяцев назад +1

    Thanks mate, great video! Working 100%

  • @camilalnmoura
    @camilalnmoura 2 месяца назад +1

    Thank you very much!!

  • @TurskoBalkanskiRecepti
    @TurskoBalkanskiRecepti Год назад +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 Год назад +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.

  • @hansabai8874
    @hansabai8874 4 месяца назад

    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?

    • @irfankhairulazhar8497
      @irfankhairulazhar8497 4 месяца назад

      getting same error on me

    • @aholearnings6620
      @aholearnings6620  4 месяца назад

      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

  • @firozbashashaik9945
    @firozbashashaik9945 5 месяцев назад +1

    nice one.

  • @chijiokenjoku6265
    @chijiokenjoku6265 9 месяцев назад

    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 8 месяцев назад +1

    How to add screenshot and videos in allure report

  • @gustavoguntzel2418
    @gustavoguntzel2418 Год назад +1

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

  • @YourTestingPartner
    @YourTestingPartner 4 месяца назад

    Screenshots cannot be found in this report

  • @shubhampandkar6981
    @shubhampandkar6981 11 месяцев назад

    How to generate code coverage report for component testing.

  • @ShubhamGore-ht1cw
    @ShubhamGore-ht1cw 10 месяцев назад

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

    • @chijiokenjoku6265
      @chijiokenjoku6265 9 месяцев назад

      run your test on jenkins and share the jenkins Build

  • @SaadNivoda
    @SaadNivoda 8 месяцев назад

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

  • @RIthon779
    @RIthon779 11 месяцев назад

    Thank you so much

  • @aldrine.tolentino
    @aldrine.tolentino 11 месяцев назад +1

    will this work on cypress-parallel?