* Find and Open product page for <name> * Delete this product
Parameters
作用:将参数传递给Java或其他文件
1
* Sign up for user "mike"
静态参数
使用 "param"形式
1
* Check "product" exists
动态参数
使用<param>形式
1
* Check <product> exists
Table参数
1 2 3 4 5
|id| name | |--|------| |1 | john | |2 | mike |
特殊参数
使用<prefix:value>形式
prefix : 参数类型,可以是file,table等
value:参数值
1 2 3 4 5 6 7 8
File:
* Verify email text is <file:email.txt> * Check if <file:/work/content.txt> is visible CSV: * Step that takes a table <table:resources/user.csv> * Check if the following users exist <table : /Users/john/work/users.csv>
resources/user.csv
1 2 3 4
FredFlintstone JohnnyQuest ScroogeMcduck
路径可以使相对或者绝对路径
##Comments
作用:备注信息
1
This is comments!!!
##Images
作用:
1 2 3


Image路径应使用相对路径
##Links
作用:
1 2 3
This is [an example](http://getgauge.io "Title") inline link.
[This link](http://github.com/getgauge/gauge) has no title attribute.