如何在TestComplete中从数组中选择随机值?

时间:2017-10-04 15:30:38

标签: arrays random textbox jscript testcomplete

我使用JScript测试文本框的字符限制,并确保接受数字,字符和特殊字符。

如果我有一个数组(" a"," 2"," $"," D"),怎么能我一次选择一个随机值?

我知道Math.round(Math.random()* 9),但我不想只返回一个整数。

谢谢。

1 个答案:

答案 0 :(得分:0)

这是我做的:

str = new Array("a", "2", "$", "D");
var result = str[Math.floor(Math.random()*str.length)];
textBox.Keys(result);