javascript – 如何在我的函数场景中使用标签Cucumber.js?

前端之家收集整理的这篇文章主要介绍了javascript – 如何在我的函数场景中使用标签Cucumber.js?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在我的功能场景中使用标签

如何知道调用我的函数的场景?

其实我有一个场景:

Feature: create module feature
  As a admin
  I want to use create module

  @createModule
  Given I am logged as 'ADMIN'
    And I am on "/admin/create"
   Then The "book_id" field should be empty

我想在我的函数中使用我的标签@createModule然后:

this.Then(/^The "?([^"]*)"? field should be empty$/,function (el) {

    if (myModule === @createModule) {
        ...
    } else if {
        ...
    }

    return main_po.checkIsEmptyElement(this,el);
});

我想得到我的标签@createModule,以指定所调用的场景,或者其他替代方案,我想知道调用我的函数的场景.

Solved :

我补充说:

this.Before(function (scenario,callback) {
    var tags = scenario.getTags();

    this.current_module = tags[0].getName();

    callback();
});

和我的功能

this.Then(/^The "?([^"]*)"? field should be empty$/,function (el) {

    if (this.current_module === @createModule) {
        ...
    } else if {
        ...
    }

    return main_po.checkIsEmptyElement(this,el);
});

解决方法

这是我用于获取黄瓜3.0.7的功能或场景的标签
let myTags = feature.pickle.tags;
    myTags.forEach(element => {
    logger.info(`My Tags: ${element.name}`);

});
原文链接:https://www.f2er.com/js/157366.html

猜你在找的JavaScript相关文章