Skip to content

Gauge JSON report v0.3.0

Compare
Choose a tag to compare
@apoorvam apoorvam released this 06 Mar 17:50
· 45 commits to master since this release

Enhancements

  • Include step parameters as a new field in json under step/concept. #5
    The new field Parameters 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.