2

我在两个不同的功能文件中有两个场景,但两个场景都测试搜索功能,但在我页面的不同部分。我的场景看起来像这样:

Scenario Outline: Search items from QuickSearch
Given that the following items
  | id | title       | 
  | 1  | Item1       | 
  | 2  | Item2       |
When I search for <criteria> in this search
Then I should get <result>
And I should not get <excluded>

Examples:
|criteria|result    | excluded  |
| 1      | 1        | 2         |
| 2      | 2        | 1         |

和:

Scenario Outline: Using a filter
Given that I have the following things:
 |id |name     |
 |1  | thing1  |
 |2  | thing2  |
When I use the <filter> filled with <criteria>
Then I should obtain these <results>
And I should not obtain these <exclusions>

Examples:
|filter     |criteria   |results    |exclusions |
|name       |thing      |1,2        |           |
|id         |1          |1          |2          |

正如您在第二个场景中所说的那样,我已经更改了 get to get 一词,以便为这两个场景编写单独的步骤。我需要两个不同步骤的唯一原因是因为 2 个不同场景中的 id 映射到不同的名称(不,我不能对两者都使用相同的名称,并且不想在第二个中从 id 3 开始)

因此,我正在考虑这两种情况的通用步骤(至少在涉及到 then 步骤时),并且我想要一个哈希映射 id 和 name 一起进行验证,但我希望哈希根据不同而有所不同哪个场景称为步骤。

那么,在 Cucumber + capybara 中有没有一种方法可以告诉我哪个场景称为步骤?

4

1 回答 1

1

我不知道从 Cucumber 步骤直接访问场景名称的方法。但是,您可以在 before 挂钩中访问该名称并将其存储在一个变量中,以便您的步骤可以使用它。

在钩子之前添加这个到你的env.rb

Before do |scenario|
    case scenario
        when Cucumber::Ast::OutlineTable::ExampleRow
            @scenario_name = scenario.scenario_outline.name
        when Cucumber::Ast::Scenario
            @scenario_name = scenario.name
        else
            raise('Unhandled scenario class')
    end
end

编辑:如果您使用的是更新版本的 Cucumber,请尝试:

Before do |scenario|
  case scenario.source.last
  when Cucumber::Core::Ast::ExamplesTable::Row
    @scenario_name = scenario.scenario_outline.name
  when Cucumber::Core::Ast::Scenario
    @scenario_name = scenario.name
  else
    raise('Unhandled scenario class')
  end
end

然后,您的步骤可以使用 . 检查方案名称@scenario_name。例子:

Then /I should get (.*)/ do |result|
  if @scenario_name == 'Search items from QuickSearch'
    # Do scenario specific stuff
  elsif @scenario_name == 'Using a filter'
    # Do scenario specific stuff
  end

  # Do any scenario stuff
end
于 2012-07-13T17:19:14.480 回答