Javascript Probe Scripting console
The MID Server Console for Javascript Probes is very helpful when working with probes on the MID Server, whether these probes are your own custom probes, or out of the box probes.
Last updated
The MID Server Console for Javascript Probes is very helpful when working with probes on the MID Server, whether these probes are your own custom probes, or out of the box probes.
Last updated
var res = [];
var min = probe.getParameter("min");
var max = probe.getParameter("max");
res.push("min: "+min+" max: "+max);
var rand = CloudRequestUtil.randomIntFromInterval(parseInt(min),parseInt(max));
res.push("rand: " + rand);
probe.createOutputResult(res.join("\n"));min: 205 max: 220
rand: 217