2

I have a scenario where I need to collect the data from different testng emailable-html report and make it as single one as look like same as testng-emailable report.

I didn't get any idea about this like how can I achieve it. I just want to create a seperate java project which will read the different html report and will make it final consolidate report as look like testng-emailable report.

Please give me some input on this, like Is there any listener can create the html template and accept the input data from html file.

I didn't look working code. Just looking some input to kick start this requirement.

ArrchanaMohan
  • 2,314
  • 4
  • 36
  • 84

1 Answers1

1

TestNG is open source software, so you could build your solution from the original code. You start with the EmailableReporter class. You collect the different results as XML files (testng-results.xml) and merge them in your code to get proper input for EmailableReporter. This will generate your desired output.

Jens Dibbern
  • 1,434
  • 2
  • 13
  • 20