ContributionsMost RecentMost LikesSolutionsRe: How to use extent-report in Ready API tool?Try this // This will get the list of all testSteps in the testCase def testSteps = context.testCase.getTestStepList() testSteps.each{ // This block will loop through the test steps and print the test step name to the log log.info(it.name) }Re: How to use extent-report in Ready API tool? try this...use globalProperties.setPropertyValuein the setup script at project level and then in the test suite level use globalProperties.getPropertyValue( "reportPath" ) def reportname=com.eviware.soapui.SoapUI.globalProperties.setPropertyValue("reportPath", path) def path = com.eviware.soapui.SoapUI.globalProperties.getPropertyValue( "reportPath" ) hope this helps Re: How to use extent-report in Ready API tool? surendermcard : what is the error you are seeing while running it for project level? Re: How to use extent-report in Ready API tool? surendermcard : surender, i hope you have tried with the code which i sent you on monday? plesae let me know if that worked for you? we can connect if required Re: How to use extent-report in Ready API tool?Hi pal, I’m out of town. I will be back by Wednesday. We can connect on that day and fix it Thanks BheemRe: How to use extent-report in Ready API tool? im able to implement extent report.. let me know if you need help Re: how to stop assertions execution when first assertion is failed no, if i abort the test execution then report is not getting generated.... Re: how to stop assertions execution when first assertion is failed right.. i got your point but my client do not want to see more failure when the first assertion failed. so she is asking is there a method to stop it right after first assertion. Re: how to stop assertions execution when first assertion is failed well.. if you are not able to login then what would be the point of verifying other assertions and mark it as failed? if i get 200 status then only i want to verify other things otherwise it should stop right there how to stop assertions execution when first assertion is failed how to stop assertions execution when first assertion is failed my scenario is like : Login request: i have added 3 assertions if i get bad ressponse and my first assertion will fail as it was expecting 200 and other assertions also gets failed. here i want to tell that if first assertion is failed( status assertion) then stop verifying other assertions. how do i acheive this? the idea i have is write assertions in groovy script and add condition but this i can do in soap ui free version, is there a feature in ready api to acheive this? Regards Bheem