我是黄瓜新手。我想知道是否有一种方法可以只运行“示例”中的特定数据行。 例如。,如果我的方案大纲如下所示:
Feature: Testing sample
Scenario Outline: sample
Given Enter the website xyz.com
When The user enters the "<first_name>"
And the user enters the "<last_name>"
And clicks on submit button
Then The user is registered
Examples:
|first_name |last_name |
|john |Mathew |
|Paul |Terry |
对于我的测试用例,我只想验证Row1中的数据,并且要排除Row2中的数据,使其不被执行。 有什么办法可以做到这一点。