Questions tagged [extent]
170 questions
1
vote
0 answers
Extent reports failing the second time. Unable to reproduce in a small project
Can someone give me an idea of what must be happening in the second iteration of an execution when extent reports fail with the below error? For the first iteration, the report is created absolutely fine. When I create another report(at same or…

Anshuman Chatterjee
- 834
- 5
- 21
1
vote
0 answers
How to generate logs in Extent Report- Cucumber-TestNG framework, when using Cucumber-TestNG Adapter
I am using these two Maven Dependencies to generate Extent Report with Cucumber (I am also using TestNG in the framework for parallel testing):
1. Extentreports-cucumber4-adapter- version 1.07 and 2.Extent Reports- version 4.09
I am using the…

Mitali S
- 92
- 2
- 11
1
vote
0 answers
Why base64 screenshot is coming as blank in emailable extent report?
When I execute from local machine, I could see screenshot properly within extent report for the failed scenario. When I execute it from Jenkins and have the extent report emailed, it's coming as blank. I am trying to use base64 in my case. Code as…

vj_tech
- 15
- 2
1
vote
0 answers
Template compilation error when executing flush
Whenever I execute the ExtentReport.flush() method I get en exception regarding references.
I have downloaded the package using NuGet and I don't have issues compiling the code.
In another test project, it works fine. I copied the test code to the…

Ido Gada
- 21
- 2
1
vote
1 answer
Match extents of two rasters in R?
I am trying to use the 'grainchanger' package in R to aggregate finer resolution raster to a coarser one.
I have 10km grid outlines of the UK, which I have converted from shapefile to raster.
I also have a land cover map of the UK in raster form.
I…

Bex Jenkins
- 11
- 4
1
vote
2 answers
How to run a block of code after each @test, no matter if the test is @Disabled or not?
Basically I would like to add an entry to my Extent report for "Skipped Tests". I understand I can use @AfterEach, however I see that the @AfterEach code block does not get executed for @Disabled Test in Junit5.
I tried using TestWatcher interface…

Ashwin Kumar
- 88
- 1
- 6
1
vote
1 answer
Merge NUnit3 XMLs into one HTML for publishing to Jenkins
I have multiple testresult.xml (say testresultMachine1.xml, testresultMachin2.xml etc.) that I get by running my nunit3 tests on different machines during a Jenkins pipeline build.
Now, I want to merge these XMLs on the master node and use…

Chubsdad
- 24,777
- 4
- 73
- 129
1
vote
2 answers
Extent Report Exception
I am getting the following exception while using Extent Report.
Any clue how do I resolve this?
I have listed the dependencies from POM.XML that I have used
java.lang.NoClassDefFoundError: freemarker/template/TemplateModelException
at…

Poulomi21b
- 11
- 4
1
vote
1 answer
Extent Report showing only one test case result when executing cucumber scripts in parallel using Cucable plugin
I have to generate Extent Report from all executed test scripts. I am running scripts in parallel. When I use TestNG or Selenium Grid for parallel execution, in those implementation, Extent Reports are getting generated perfectly covering each…

TheSociety
- 1,936
- 2
- 8
- 20
1
vote
1 answer
Extent Reports tests always reporting Pass
I am having an issue where if I run a test that has 6 steps, 3 pass, 1 fail, 2 skipped. It will always report as Passed in my extent reports. I am using Klov. Is it possible that I have not correctly configured the report? and if so does anyone have…

caseyprogramming
- 62
- 8
1
vote
2 answers
Retry analyzer and extent report
Am using retry analyzer and extent report for selenium project.
When a test case is failed, using retry analyzer the failed test case is ran twice.
Issue is in Extent report am able to see both the runs. One as Skiped and the other as Failed.
How…

Sundar
- 11
- 3
1
vote
1 answer
Getting closed before endTest call in Selenium using Extent Reports
BaseTest.java:
private static ReportService reportService; // Calling report service interface
@BeforeSuite:
reportService = new ExtentReportService(getConfig()); // New instance of…

Sagar Jani
- 161
- 2
- 3
- 21
1
vote
0 answers
Matplotlib imshow checkerboard plot with changing data ranges
I have a dataset which has a different range of the x coordinate at each y coordinate, without a specific rule or a fixed delta_x. E.g.
y=0 -> x is 40 values in range(20, 55)
y=1 -> x is 40 values in range(24, 49)
y=2 -> x is 40 values in range(23,…

Anonymous
- 26
- 5
1
vote
1 answer
shape file extent with R for overlapping
I have 2 shape files: data (spatial point dataframe) and polys (polygons dataframe). I want to do an overlap but is seems that it does not work.
Here are data and polys:
> data
class : SpatialPointsDataFrame
features : 12527
extent :…

Floni
- 475
- 2
- 13
1
vote
1 answer
How to invoke listener from pom.xml
I have an extent report listener and am invoking it from testng.xml and it works perfectly fine. When I invoke the listener from my pom.xml it does not work fine.
There are two questions I have here:
Can I invoke the listener from the testNG.xml…

user3627332
- 177
- 1
- 3
- 13