ContributionsMost RecentMost LikesSolutionsRe: Getting Blank allure reports with ReadyAPI allure results json files I am getting empty page when I am trying to run same command- I have mentioned command as allure serve "Path of results directory" Can you guide me what can be issue? Allure version is 2.13.10 Ready API version 3.8.1 How to generate extent report in Ready API using Groovy script at Project level Hi, I was able to create Extent report at Test Suit level which I found in one of the existing post. But I need to know how it can be created at Project level as I have multiple test suites in my project? Any information will be helpful. Below is the script I am using at suit level: import com.relevantcodes.extentreports.ExtentReports; import com.relevantcodes.extentreports.ExtentTest; import java.text.SimpleDateFormat def date = new Date() sdf = new SimpleDateFormat("dd_MM_yyyy_HHmmss") def start_time = sdf.format(date) log.info(start_time) def path = "C://Reports//API_Testing_"+start_time+".html" log.info(path) def LogStatus = com.relevantcodes.extentreports.LogStatus; def failedTestCase = 0; def extent = new ExtentReports(path,false) extent.addSystemInfo("Report Name", "TestReport").addSystemInfo("Report Type", "Automation Report"); runner.results.each { testCaseResult -> def name = testCaseResult.testCase.name log.info name def extentTest = extent.startTest("$name", "$name") if(testCaseResult.status.toString() == 'FAILED') { failedTestCase++ extentTest.log(LogStatus.FAIL, testCaseResult.testCase.name) } else { extentTest.log(LogStatus.PASS, testCaseResult.testCase.name) } extent.endTest(extentTest); } extent.flush(); SolvedGenerating Allure Report in ReadyAPI post execution of Project or Test Suite Hi, I am trying to generate Allure report by command line("allure serve") post execution of my project /test suite from Ready API but I am getting error "allure-results does not exist" and it opens new empty webpage on Browser I have followed the steps provided on page : https://support.smartbear.com/readyapi/docs/testing/reports/existing/allure.html I have installed Allure Version 2.13.10 on my system and using ReadyAPI Version 3.8.1 Solved