P5 - Log different types of information to the extent reports | Extent Reports |

Поділитися
Вставка
  • Опубліковано 18 жов 2024

КОМЕНТАРІ • 16

  • @HYRTutorials
    @HYRTutorials  2 роки тому +1

    📌 Extent Reports Playlist Link: bit.ly/3pGD1gh
    ✴ Checkout my other playlists: bit.ly/3gLIAVL
    ☕ Buy me a coffee: bit.ly/33ljBWc

  • @Deepak-ie7co
    @Deepak-ie7co 2 роки тому +2

    These are the best videos i ever watched on Extent reports..very informative.. Thanks sir for the detailed explanation.

  • @gayathrichittaboina2775
    @gayathrichittaboina2775 Рік тому +1

    Hi ,i have watched all the testNG 27 videos,those are really helpfull to me and concepts are explained from scratch....I am facing one problem: in some videos and here also: in code part(ouput) ,it is somewhat blur so it's difficult me to track..expecting clear video for code part in upcoming videos.thanks is a very small word i can say for the free sessions..Thank you once again!.🙏

    • @HYRTutorials
      @HYRTutorials  Рік тому

      By default UA-cam plays the videos in lower resolution buddy. Can u change the quality to max and check the videos one more time.
      Let me know if you still face the issue

  • @damodharnalluri7236
    @damodharnalluri7236 Рік тому +1

    It's very important and usefull topic to every automation tester which is using selenium.

  • @TejaskumarJC-nh9ey
    @TejaskumarJC-nh9ey Рік тому +1

    Best videos on extent report when compare it to Udemy Courses Thanks Yadgiri Sir

  • @sanjan77
    @sanjan77 Рік тому +1

    Excellent teaching

  • @ananthvraj183
    @ananthvraj183 2 роки тому

    Excellent

  • @prachijoshiporwal3353
    @prachijoshiporwal3353 2 роки тому +1

    When we create the extent report we have to write events like test.pass test.fail test.info at all the steps of testcase
    What to do to log the error in extent report where we dont know error appears ?
    Do we have to add listeners if yes since my project using junit and not testng how to attach listeners to extent report

    • @HYRTutorials
      @HYRTutorials  2 роки тому

      There are two options here:
      1. Add the pass, fail and info kind of events manually in every place wherever you want them
      2. Refactor your framework in such a way that every event is automatically logged from framework level itself.
      Whenever a test is failed you can get to know about that failure from either annotations or listeners.
      I'm not quite sure about the junit buddy

  • @softwretesting
    @softwretesting 10 днів тому

    How to print my executed all method in the extent report
    Like Testbase class with the Setup method is executed then it will print in the extent report,
    Also I run the testng @test annotations it's only print method name, it's not print whatever method written in specific testcase method.
    @test
    Public void logintest()
    {
    Loginpageobj.enterid()
    Loginpageobj.enterpwd()
    Loginpageobj.clickonloginbtn()
    }
    I have this methods how can I print all methods which define logintest()