未知选项:--glue com.app.saf.glue.mf

Unknown option: --glue com.app.saf.glue.mf

我在我的 jmeter 测试计划中使用了 OS Process Sampler

Command 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)

My Jmeter version is 3.2

将您的配置更改为:

-jar
test-automation-0.0.1-SNAPSHOT.jar
classpath:features/mf
--glue 
com.app.saf.glue.mf
--tags 
@LOANSETUP