-
Bug
-
Resolution: Unresolved
-
Major
We have configured extended choice parameter with JSON Parameter Config Groovy Script option such that after selection the value of parameter field is like that : load_test_type=
{"LoadTestType":"Iterative","MaxThinkTime":5,"MaxUsers":1,"MinThinkTime":2,"NoOfIteration":1,"RampUpTime":1}now we wanted to call the same with build with parameter rest api as:
/buildWithParameters?cloud_team_name=load-and-performance-other-team&load_test_type=
this call have not populated any value in the field , refer screenshot for how we take input for the same :
same groovy json written for one option:
schema: {
"title": "",
"oneOf": [
,
{
"title": "Standard: Iterative",
"type": "object",
"properties": {
"MaxUsers":
,
"RampUpTime":
,
"NoOfIteration":
,
"MinThinkTime":
,
"MaxThinkTime":
,
"LoadTestType": {
"type": "string",
"default": "Iterative",
"options":
}
},
"required": [
"MaxUsers",
"RampUpTime",
"NoOfIteration",
"MinThinkTime",
"MaxThinkTime",
"LoadTestType"
],
"additionalProperties": false
}