Solved
Forum Discussion
SriniMarva27
8 years agoOccasional Contributor
Hi Lucian,
Thanks for your reply. I want to add a property name (key) using a variable value and not the property value. How do I do that?
Lucian
8 years agoCommunity Hero
It is equally simple:
def a = "Property1" testRunner.testCase.setPropertyValue(a, "")
- SriniMarva278 years agoOccasional Contributor
Hi Lucian,
How do I add a property named Property1 at test case level using the variable 'a' reference?
- Lucian8 years agoCommunity HeroThe code from my previous answer should work well.