ContributionsMost RecentMost LikesSolutionsRe: Reprt of readyAPi We need in the report request and response but it will not shown in the attached image there only shows pass test steps name . Re: Reprt of readyAPi why do you need all the above things in the report? There couple of factors that needs to be considered. ===>Its organization requirement. Reprt of readyAPi Requirement of report - 1) request 2)response 3)why teststep pass 4)Why teststep fail 5)method 6)End point 7)Assertions 8)Testcase name 9)test suite name please find attached for approach and follow that . We need report in Pdf format. How to write teardownscript and setupscript in readyAPI ? SolvedRe: readyapi report I attached aan image of report which type of I needed. Report type - pdf also I add a script Re: how to send request response to readyapi report using groovy Can you please elaborate how to send ? Re: Unable to select object Its working. Thank you Azure devops add on in test complete Trying to integrate test complete with azure devops but i can't see the azure devops extension in test complete in project properties. Please check attached image SolvedRe: readyapi report Pdf type report needed Also shows pass test case - green color and fail test case - red below code is not sufficient for that plaese help in that // Below code goes in set up script tab FileWriter file = new FileWriter("D:/udm/reporting/Report.html") def str = '''<HTML> <HEAD> <meta charset='UTF-8'> <title>WEBSERVICE TEST AUTOMATION REPORT</title> <style> .demo { border:1px solid #C0C0C0; border-collapse:collapse; padding:5px; } .demo th{ border:1px solid #C0C0C0; padding:5px; background:#E0F0F1; } .demo td{ border:1px solid #C0C0C0; padding:5px; background:white; } </style> </Head> <table class="demo"> <h3> WEBSERVICE TEST AUTOMATION REPORT</h3> <thead> <tr> <th>Test Step</th> <th>Method</th> <th>Status Code</th> <th>Endpoint</th> </tr> </thead> <tbody>''' file.write(str) file.close() // Below code goes in TearDown script tab FileWriter file = new FileWriter("D:/udm/reporting/Report.html", true) def testStepName def method def statusCode def endpointURL def str testCase.testStepList.each{ testStepName = it.name method = it.getHttpRequest().getResponse().getMethod() statusCode = it.testRequest.response.responseHeaders["#status#"][0] endpointURL = it.getHttpRequest().getResponse().getURL() str = "<tr><td>${testStepName}</td><td>${method}</td><td>${statusCode}</td><td>${endpointURL}</td></tr>" file.append(str) } file.append("</tbody></table></HTML>") file.close() color Re: readyapi report nmrao wrote: Not a clear question. What type of report are you looking? junit, pdf or something else please find attached image. readyapi report how to creare ready API report in that Requirement - 1)testsuite name 2)teatcase name 3)test step name 4)request response for pass and fail test steps 5)method 6)Statuscode All are required please help in that tool not provide enough information in the report Solved