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 中获取场景名称?
基础教程推荐
- 存储 20 位数字的数据类型 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
