1

这个有可能:

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      |
4

1 回答 1

0

对的,这是可能的。例如

Scenario Outline: filing data
  Given I am on the home page
  And I <action>
  And "<field>" field loses focus
  Then I should see "<error>"
  Examples:
  | action                               | field | error              |
  | fill in "Email" with "test.test.com" | email | Email is not valid |
于 2012-10-08T04:32:22.817 回答