0

如何在钩子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

4

1 回答 1

0

这是我的做法。

  scenario_title = scenario.respond_to?(:scenario_outline) ? scenario.scenario_outline.title : ''
  scenario_title_example = scenario.respond_to?(:name) ? scenario.name : ''
  scenario_full_title = scenario_title + scenario_title_example
于 2015-08-06T23:04:25.567 回答