如何在Eclipse中配置Cucumber功能文件?

时间:2017-09-16 14:26:51

标签: eclipse cucumber gherkin feature-file

我有一个功能文件如下:

Feature: Log in to the application

@OnlyOneTime
  Scenario: Login to application as valid user
    When User enter the valid credentials
    And Click on Login
    Then Home Page should be displayed

  Scenario: Login to application as Invalid user
    When User enter the inValid credentials
    And Click on Login
    Then Error Message Should be displayed

但问题是,它显示为普通文件,根本没有使用小黄瓜颜色,当我右键单击时,我也看不到 找到步骤 选项一步。

enter image description here

3 个答案:

答案 0 :(得分:2)

我也在寻找解决方案。在网上找不到任何东西。所以我一直在 eclipse 编辑器上找,发现了这个。

  1. 窗口 -> 首选项
  2. 在左侧首选项窗口中,单击常规 -> 编辑器 -> 文件关联
  3. 在右侧单击 Add... 在文本框中输入 *.feature 然后单击 OK
  4. 在列表中选择新添加的 *.feature
  5. 在 Associated editors 下单击 Add...,然后选择带有绿色黄瓜图标的 Editor。点击确定
  6. 申请并关闭

答案 1 :(得分:0)

我找到了答案:

  

如果一切安装正确,并且如果要素文件不显示小黄瓜颜色,我们需要首先在同一路径中创建一个样本cucumber.feature文件。

     

如果使用样本小黄瓜代码自动填充,则创建此代码后,其他功能文件也可以使用,或者我们只需将功能文件的内容粘贴到cucumber.feature中,然后重命名即可。

答案 2 :(得分:0)

请按照以下步骤操作

-右键单击。功能文件->打开方式->黄瓜编辑器