How to get name of scenario in cucumber java?(如何在黄瓜 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 中获取场景名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在黄瓜 java 中获取场景名称?


- Eclipse 的最佳 XML 编辑器 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 获取数字的最后一位 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 转换 ldap 日期 2022-01-01