Execution Profile should be reported in the Report.html and exported to PDF

I have developed a custom solution for me.

My code compiles reports in JSON, for example:

The report includes the name of Execution Profile and GlobalVariable name=value pairs applied to the TestSuite run.

{
  "executedBrowser": "Chrome",
  "executionProfile": "default",
  "executionProfile_GlobalVariables": {
    "DEBUG_MODE": false,
    "foo": "bar",
    "Password": "",
    "Products": [
      88,
      99
    ],
    "URL": "http://demoaut.katlaon.com/",
    "Username": "John Doe"
  },
  ...
1 Like