I want to pass multiple arguments in karate-config.js through mvn command

陌路散爱 提交于 2019-12-04 12:58:47

Instead of using argLine try passing it directly,

mvn test -Dkarate.env=gdcStaging -Dkarate.source=false -Dkarate.natco=gdc

I suggest not to use karate. as a prefix to your arguments other than karate.env, instead try using your application name. eg,

-Dmyapp.source=false

coming to the karate-config.js

var natco = karate.properties['myapp.source']

This should work.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!