如何在黄瓜 java 中获取场景名称? [英] How to get name of scenario in cucumber java?

查看:20
本文介绍了如何在黄瓜 java 中获取场景名称?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想获取场景名称以获取有意义的日志并在运行时在 java 中生成自定义报告.Scenario 类只有 getStatus() 和 getSourceTagNames() 方法.我找不到获取场景名称的方法.

I would like to get name of scenario to have meaningful logs and to generate custom report at run-time in java. Scenario class have only has getStatus() and getSourceTagNames() methods. I don't find a way to get scenario name.

有人可以帮我解决这个问题吗?

Can someone help me to get this resolved ?

推荐答案

从1.6版本开始,除了getStatus()getSourceTagNames(),还有一个方法,getName(),返回场景的描述.例如,对于如下场景:

From version 1.6, in addition to, getStatus() and getSourceTagNames(), there is another method, getName() that returns the scenario's description. For example, for a scenario as follows:

Scenario: verify number of topics shown in the UI

scenario.getName() 返回 验证 UI 中显示的主题数量"

我在@Before中初始化场景如下:

I initialize scenario in @Before as follows:

@Before
public void before(Scenario scenario) {
    this.scenario = scenario;
}

希望这会有所帮助.

这篇关于如何在黄瓜 java 中获取场景名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆