Solved
Forum Discussion
nmrao
10 years agoCommunity Hero
Can you elaborate your use case?
ilovechiku
10 years agoContributor
i have a groovy step called GetEditableRole (starStep that you add as a test step)
in this i have
testRunner.testCase.setPropertyValue("CompanyID1", menuDetailReturn.co)
also am able to print it ... both get and get are working fine.
log.info testRunner.testCase.getPropertyValue("CompanyID1")
Now i want to use this property in my assertion.
def starProperty = context.expand( '${GetEditableRole #CompanyID1}' )
log.info starProperty
i dont get the company value on printing starProperty. Why?
- nmrao10 years agoCommunity HeroPlease use below statement for the same:
context.testCase.getPropertyValue('CompanyID1') to get the value of CompanyID1 of test case property.