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

查看:318
本文介绍了如何获取黄瓜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 ?

推荐答案

除了 getStatus() getSourceTagNames(),还有另一个方法, getName ),返回场景的描述。
例如,对于以下场景:

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天全站免登陆