Gauge JSON report v0.3.0
Enhancements
- Include step parameters as a new field in json under step/concept. #5
The new fieldParameters
in step includes all the various types of parameters with their values, including static parameters, dynamic, table and special params.
Example:
"parameters": [
{
"parameterType": "dynamic",
"name": "word",
"value": "gauge",
"table": null
},
{
"parameterType": "static",
"name": "",
"value": "3",
"table": null
}],
Updated complete JSON Schema can be found here: https://apoorvam.github.io/json-report/
Note: Table
field in Step is now deprecated since its included in Parameters and will be removed in next release.