SeeTestAutomation- addTestProperty
info
Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .
boolean addTestProperty(String property, String value)
Description
Adds a property to test. The property will appear in the reporter's report.
info
Properties are restricted to 1000 per project. Trying to add a new property name may return 'false' in case 1000 properties are already defined in the project.
Parameters
-
Property: Name of the property to add.
-
Value: the value of the added property.
Return value:
- true In case property and value were added.
- false In case that the addition of the property failed.
Code Examples
Java Example
boolean result = client.addTestProperty("somePropertyName", "a value");