是否有命令行选项列出黄瓜测试套件中的所有标签?
例如,我想要一些像:cucumber --show-tags foo.feature
这会给我一些类似的东西:
@ci
@development
@regression
@wip
我试过的语法是"cucumber -f tag_cloud foo.feature",它给我"无法加载tag_cloud(load_error)"
我只是想知道如何做到这一点.
我还需要安装任何api吗?或者它是怎么回事?
请帮助我
I have a cucumber project and I want to get al the tags in the project to be able to choose them as parameters.
I found this question where cucumber had an option to get the tags but I found that doesn't work anymore, then I found this other question where I found I need a custom formatter to get my tags, but it is for ruby, and I need it for Java, so then I found this article on …