ContributionsMost RecentMost LikesSolutionsTrying to set test case property for a different project. No errors but it isn't set. I run the following script: import com.eviware.soapui.impl.wsdl.WsdlProjectPro def projPath = testRunner.testCase.testSuite.project.path.split('\\\\') def path2Auth = (projPath - projPath.getAt(projPath.size()-1) + "KeyVault-readyapi-project").join('\\\\') def prj = new WsdlProjectPro(path2Auth) def testSuite = prj.getTestSuiteByName("KeyVault") def testCase = testSuite.getTestCaseByName("AccessToken") def creationTime = testCase.getPropertyValue("creationTime") log.info("creationTime:" + creationTime ) testCase.setPropertyValue("creationTime", "") log.info("creationTimeAfterChange:" + testCase.getPropertyValue("creationTime") ) It works without errors and returns the result that the property is empty. But in fact, it isn't. It still has a value as before changes. How to resolve it? Why it happens? Regards, Elena Re: Load properties from the file if run ReadyAPI from console. No. I wasn't able to find a "copy to clipboard" button beside my project properties. I resolved it via Global properties and then declared them as -G for the testRunner. Load properties from the file if run ReadyAPI from console. I have Environment properties in the .txt file. Is there a way to use them if run ReadyAPI from the console? How to mention taking values from this file? SolvedRe: How to disable test cases in the setup script based on TC tag? Cool! It works exactly as I wanted! Thank you very much for help 🌞 How to disable test cases in the setup script based on TC tag? I have several test cases in my test suite with a specific tag. How to make them disabled depending on project env in the test suite setup script? Solved