Forum Discussion
- BenXContributortestRunner.testCase.setPropertyValue("propertyXY", "property_value");
?
Beno - Benz_AndreasOccasional ContributorThanks for Answer.
With testrunner don't worked.
I find a way
context.testCase.setPropertyValue("PropertyName", "PropertyValue");
Best regards
Andy - Benz_AndreasOccasional ContributorOK
their are some different things
If you want set the TestCase properties from a Script Assertion you need
context.testCase.setPropertyValue("PropertyName", "PropertyValue");
If you want set the TestCase properties from SetupScript you need
testRunner.testCase.setPropertyValue("PropertyName", "PropertyValue");
Sorry for my to fast wrong first Answer
Thanks
Andy