如何在钩子Example
中从 Ruby 黄瓜测试中获取电流?After
我可以用下面的代码得到标题。我的Scenario
有几个Examples
。我可以访问当前Example
正在测试的吗?
特征文件
Scenario Outline: Successful login with primary accounts
Given I start on the login page
When I log into Overview page with "<acct>"
Then I am on the Overview page
Examples:
| acct |
| account1 |
| account2 |
钩后
After do |scenario|
scenario.scenario_outline.title # will give me the title
如何获得电流Example
?