How to display Test Cases details in Jenkins Console Output?
Clash Royale CLAN TAG #URR8PPP How to display Test Cases details in Jenkins Console Output? I want to display Excel(XLSX) Test cases id,description and status while running selenium testng execution in the Jenkins Console output,below is the format. TC_ID|Test Cases Description|Status TC01|Verify Login Home|PASS TC02|Verify Login Screen|FAIL In case any one did this type of model please help me to achieve this in Jenkins Output Console. Just to get you right, you mean that the content would be displayed post test class execution ? @Rajesh Om – AutomatedOwl Aug 9 at 13:45 @AutomatedOwl Yes post test class execution,Can you please provide code – Rajesh Om Aug 9 at 16:24 2 Answers 2 If you are using TestNG in your project, anything you log using Reporter class will be also printed in Jenkins console output : Reporter.log("This will be displayed in the TestNG report AND in Jenkins console"); Note : You need to add the following import : import o...