ContributionsMost RecentMost LikesSolutionsRe: How to add Endpoint in SOAP services section of environment using groovy? Thank you so much richie G for your valuable comment. Finally i have got the answer of m question. def config=env.getSoapServiceAt(i).getEndpoint().getConfig() log.info "Demo1 : "+config.getStringValue() config.setStringValue("ReadApi") log.info "Demo2 : "+config.getStringValue() Thanks Yogesh How to add Endpoint in SOAP services section of environment using groovy? How to to set any value in Endpoint column of soap services section through groovy? Yogesh SolvedRe: Solution Script to Cleanup of Custom property values in the project int proptyCounts = testRunner.testCase.propertyCount String [] tcexe_ToRemove = new String[proptyCounts] for(int i=0;i<proptyCounts;i++) { propertyName = testRunner.testCase.propertyNames[i] tcexe_ToRemove [i]=propertyName.toString().trim() } for(int j=0;j<tcexe_ToRemove.size();j++) { testRunner.getTestCase().removeProperty(tcexe_ToRemove[j] ); }