We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Allure report doesn't contain parameters from Scenario Outline
Feature: Some Feature Scenario: Some Scenario Given variable is <a_value> When we add <b_value> Then the result will be <c_value>
Examples: | a_value | b_value | c_value | | 2 | 3 | 5 | | 3 | 3 | 6 |
The data from "Exambles" doesn't pass to allure reports.
Allure report doesn't contain parameters from Scenario Outline
Feature: Some Feature
Scenario: Some Scenario
Given variable is <a_value>
When we add <b_value>
Then the result will be <c_value>
Examples:
| a_value | b_value | c_value |
| 2 | 3 | 5 |
| 3 | 3 | 6 |
The data from "Exambles" doesn't pass to allure reports.