ContributionsMost RecentMost LikesSolutionsRe: how to fetch all the TC name and test step names that have db query? Thanks Rao for your quick response and help . it worked :) Re: how to fetch all the TC name and test step names that have db query? yes i do have specific string to search for. Re: how to fetch all the TC name and test step names that have db query? once identified the tc and test step names , it will be easy for me to update. Re: how to fetch all the TC name and test step names that have db query? Have a requirement to update the db query that are used in the groovy scripts. Hence want list the test steps of specifc groovy scripts that contains db query. tried using contains function but unable to read the text written in groovy. how to fetch all the TC name and test step names that have db query? In a soapu ui project suite, I want to fetch the TC name and test step names containing the db scipts. I am using the code below, getting an issue at the line i.e underlined , tried few things but nothing worked. If someone can help. testRunner.testCase.testSuite.project.getTestSuiteList().each { if(it.name.equalsIgnoreCase("bank")){ it.getTestCaseList().each { for (testSteps in it.testStepList){ if(testSteps instanceof WsdlGroovyScriptTestStep ){ log.info testSteps.name log.info testSteps.getContent() or testSteps.contains("db query") } } } } } SolvedRe: TestExecute - Disable logging entirely Were you able to implement this? I am unable to do this for my functional automation project. For negative TC's where i expect 400 response to pass my test case these files are getting genrated . ex: Retail-<Test case name>- <Test Step name>-0-FAILED Re: How to Disable the ok and failed logs text files generated at time of execution ried few options like discardResponse setting false for all the rest request , but still it is generating the log file How to Disable the ok and failed logs text files generated at time of execution I have created automation framework for functional testing , I want to disable the logs files generated at time of execution ex: Retail-<TC name>-<srepname>1-0-FAILED.txt As I have some negative test cases for which I should receive Request code 400, and this failed files are creating confusion as well as unnecessarily taking space. I want to disable this option. Please suggest