这个有可能:
Scenario Outline: Add two numbers
Given I have entered <num1> and <num2> into the calculator
When I press add
Then the result should be <result> on the screen
Examples:
| num1 | num2 | result |
| 50 | 70 | 120 |
| 10 | 20 | 30 |
我的问题是:
是否可以在大纲示例中使用表格?就像下面的场景:
Scenario Outline: Add two numbers
Given I have entered <num1> and <num2> into the calculator
When I press add
Then the result should be <result> on the screen
| a | b | c |
| 50 | 70 | 120 |
| 10 | 20 | 30 |
Examples:
| num1 | num2 | result |
| a | b | c |