DIPESH PATEL

Results 4 comments of DIPESH PATEL

As you are creating reports.StartTest for each test meaning each method will be treated as a test. In this case, Try creating logger =reports.StartTest("tc_01") in a @beforeMethod and @aftermethod in...

Hi Vinit, in your extent-config.xml, just update the script tag with the following. This will show VINIT instead of Extent at the top left corner in the report. ``` ```...

Hi seeramzan, When you create an instance of extent report in your init() method. You if add a timestamp it might resolve your issue. ``` ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(dir...

As far as I know, you need to use the parent-child concept here to satisfy your requirement. ``` ExtentTest parent = extent.startTest("Parent"); ExtentTest child1 = extent.startTest("Child 1"); child1.log(LogStatus.INFO, "Info"); ExtentTest...