如何找到 CucumberOptions (plugin = ...) 的可能值

How to find the possible values for CucumberOptions (plugin = ...)

我在这里发现了另一个类似标题的问题,42878832,但它没有回答我的问题。

我是 运行ning Cucumber,我想通过指定 CucumberOptions 来自定义我的 TestRunner。我正在尝试向 plugin 选项添加值,并遵循一个示例,其中将 progress 的值指定为允许的值之一。当我 运行 我的代码没有看到它产生预期的输出时 .P- 所以我想我今天使用的版本可能不再支持这个功能了。我正在使用 Intellij (2020.2), Java (15), cucumber-java (6.8.1).

有谁知道这些选项在哪里记录,更具体地说,我在哪里可以阅读 plugin 选项的可用选项列表。我在 Cucumber 网站上找到了这个页面 CucumberOptions docs,但它不是很有用。

我的 TestRunner class 如下所示。

@RunWith(Cucumber.class) @CucumberOptions(
        features = {"cucumber/features"},
        glue = {"steps"},
        plugin = {"progress", "pretty", "html:Report1"},
        dryRun = false,
        monochrome = true
        //tags = {"@P1"}
        //name = {"Logo"}
        ) public class TestRunner { }

您可以在 here

中找到列出的选项

在 javadoc 中:

here

如果您想知道其中一些是如何工作的,请查看 here

这里有一个 说明如何使用 progress