我已经在我的千分尺测试计划中使用了OS处理取样器。
命令java
Value
-jar
test-automation-0.0.1-SNAPSHOT.jar
classpath:features/mf
--glue com.app.saf.glue.mf
--tags @LOANSETUP当我运行测试计划时,我得到了错误:
Exception in thread "main" cucumber.runtime.CucumberException: Unknown option: --glue com.app.saf.glue.mf
at cucumber.runtime.RuntimeOptions.parse(RuntimeOptions.java:148)
at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:85)
at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:78)
at cucumber.runtime.RuntimeOptions.<init>(RuntimeOptions.java:70)
at cucumber.api.cli.Main.run(Main.java:31)
at cucumber.api.cli.Main.main(Main.java:18)我的计量器版本是3.2
发布于 2017-09-27 12:31:19
将配置更改为:
-jar
test-automation-0.0.1-SNAPSHOT.jar
classpath:features/mf
--glue
com.app.saf.glue.mf
--tags
@LOANSETUPhttps://stackoverflow.com/questions/46447606
复制相似问题