Cucumber语法格式
Posted wysk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cucumber语法格式相关的知识,希望对你有一定的参考价值。
1 @login
2 Feature: Login
3 @T1
4 Scenario: Login with correct credentail
5 Given I open login page
6 When I enter correct "username" and "password"
7 When I click login
8 Then I go to home page
9
10
11
12 @T2
13 Scenario Outline: Login with invalid credentail
14 Given I open login page
15 When I enter correct "<username>" and "<password>"
16 When I click login
17 Then I see "<errorMessage>"
18 Examples:
19 |username|password|errorMessage|
20 | | |用户名不能为空|
要想参数匹配的书写格式,颜色自动变
以上是关于Cucumber语法格式的主要内容,如果未能解决你的问题,请参考以下文章