Questions tagged [reportng]

ReportNG is an HTML and XML reporting plug-in for TestNG.

ReportNG is a simple HTML reporting plug-in for the TestNG unit-testing framework.

It is intended as a replacement for the default TestNG HTML report. The default report is comprehensive but is not so easy to understand at-a-glance.

ReportNG provides better user interface than basic TestNG HTML reports.

64 questions
6
votes
2 answers

Selenium Java (maven project): TestNG results differs from ReportNG

I tried running testng.xml and the results were: =============================================== Default test Tests run: 14, Failures: 6, Skips: 0 Default suite Total tests run: 14, Failures: 6, Skips:…
Sanchit
  • 315
  • 2
  • 20
6
votes
1 answer

Java - Turn off TestNG's default reporters programmatically

I have an application where I need to execute my TestNG @Test annotated methods from my main method, and use ReportNG to generate reports. My main method looks like this: public static void main(String args[]) { TestNG myTestNG = new TestNG(); …
Varun Mulloli
  • 658
  • 13
  • 28
6
votes
1 answer

A dependency depends on older version of a library already used in the project

This sounds to me like a generic problem so I'm wondering if there is a general recommended way to deal with these situations regardless of the build / dependency management tools used (Gradle in my case). I can imagine this issue arising regardless…
SantiBailors
  • 1,596
  • 3
  • 21
  • 44
4
votes
3 answers

ReportNG does not provide any report

I heard that ReportNG creates a better report than TestNG's normal report. I tried to create ReportNG report, but failed. I am using Eclipse and I have downloaded ReportNG and added reportng-1.1.3.jar and velocity-dep-1.4.jar into classpath and…
Unni
  • 147
  • 5
  • 16
4
votes
0 answers

Getting ReportNG to generate its output in Maven's "site"?

I'm trying to use ReportNG with Maven (and Maven Surefire) to generate reports for the results of TestNG tests, within Eclipse. I believe I have followed the instructions…
user1628103
  • 197
  • 1
  • 8
3
votes
1 answer

How to add one standalone project into another maven project

I have a standalone maven selenium project which is working perfectly fine, now I want my reports to be generated using ReportNG and for which I would be doing some customisation to already developed ReportNG code. To customize the ReportNG code, I…
Test Email
  • 135
  • 1
  • 4
  • 8
3
votes
0 answers

selenium & reportNG: send emailable report

I managed to get a reportNG report as result of my test session and it looks really really nice :-) But, I'm wondering if it's possible to get a sort of emailable report as well ( like we have in testNG default reporting)
user1944151
  • 353
  • 1
  • 4
  • 16
3
votes
1 answer

Not getting report of TestNG in ReportNG

I am executing testng in eclipse and I want generate the report in reportNG. For that I have inlcuded guice-3.0,reportng-1.1.3,velocity-dep-1.4 jar files and added listeners in xml file Also I have disable the default TestNG listener in…
imtiyaz
  • 67
  • 3
  • 11
3
votes
1 answer

maven-surefire-plugin and ReportNG cannot change stylesheet for the test report

I like to change style (use another .css than reportng.css) on the standard report from ReportNG using Maven. My pom.xlm looks like this ...
3
votes
3 answers

ReportNG Report with TestNG is not generated using WebDriver

I am using Selenium WebDriver + TestNG with java in Eclipse. I want to generate better report using ReportNG rather than normal TestNG report. I have configured the build path with reportng-1.1.2.jar and velocity-dep-1.4.jar. I have also disabled…
user1755344
  • 31
  • 1
  • 2
2
votes
1 answer

Is it possible to configure Reportng, to display the output for multiple execution on the same test method

I am trying to read multiple rows from a csv and execute it using one single test method. For instance, In Create User, I could create multiple users for each row using a single test method. Now the question is, how to configure reportng to display…
Shaik Sadiq Ahmed
  • 173
  • 1
  • 4
  • 18
2
votes
0 answers

Why reportNG does not show reason/stacktrace for skipped test

I have integrated reportNG with testNG framework by adding following lines in testNG.xml. Scenario: I made a mistake by not writing correct dataProvider name in test annotation. This caused test to skip. Original testNG showed the reason for…
2
votes
0 answers

Is there a way to change test name and suite name in ReportNG report with out using testng.xml?

I am using ReportNG to generate the reports for test cases executed by TestNG.But currently I am able to change the report title only.The suite name and Test name in report is "Command Line Suite" and "Command line test" respectively.Can you help me…
Abhishek_Mishra
  • 4,551
  • 4
  • 25
  • 38
2
votes
0 answers

org.uncommons.reportng.ReportNGException: Failed generating HTML report

[TestNG] Reporter org.uncommons.reportng.HTMLReporter@1add4d8 failed [testng] org.uncommons.reportng.ReportNGException: Failed generating HTML report. [testng] at…
bstent
  • 95
  • 1
  • 8
2
votes
1 answer

Failed when generating report into time stamp folder

Before talking about the issue, I want to explain something first. I have a basic project with 4 files: The project contains: 1.testbase01.java: contains information to preparing for initial parameter of testing like: get driver before…
Hoang Vo
  • 75
  • 1
  • 8
1
2 3 4 5