Forum Discussion
nishantna
11 years agoOccasional Contributor
If you want to access properties of another project, then you may write a script for this. I am sharing a sample of such a property transfer.
def proj= testRunner.testCase.testSuite.project.workspace.getProjectByName("ProjectName")
def testCase=
proj.getTestSuiteByName("TestSuite Name").getTestCaseByName("TestCase Name")
def prop= testCase.getPropertyValue("property name")
//now you can access the property of any other project