我使用原型方法为gatling生成了一个maven项目。当我从eclipse运行Engine.scala文件时,我要求输入要运行的模拟。 我使用Gatling PropertiesBuilder为模拟类添加了属性,但它仍然要求模拟ID。我想提前提供所有信息,以便在运行Engine.scala时它不会提示我输入。
这是我的代码
val props = new GatlingPropertiesBuilder
props.dataDirectory(IDEPathHelper.dataDirectory.toString)
props.resultsDirectory(IDEPathHelper.resultsDirectory.toString)
props.bodiesDirectory(IDEPathHelper.bodiesDirectory.toString)
props.binariesDirectory(IDEPathHelper.mavenBinariesDirectory.toString)
props.simulationClass("za.co.insights.gatling.RecordedSimulation")
props.runDescription("Testing")
props.mute()
//props.reportsOnly("true")
//props.
//Gatling.fromArgs
Gatling.fromMap(props.build)
答案 0 :(得分:0)
要执行此操作,请转到您的gattling.conf文件并设置 mute = true