1

以下代码将单击 TestComplete 自动化工具脚本中从 1 到 9(静态数字范围)的计算器按钮。我想增强这个 for 循环,使其单击任何数字组合,如 456 或 987 任何数字组合。有人可以帮助我吗?

//Click Calculator buttons 1-9
for (i=1; i<=9; i++)
{
   alias.Window("Button", i).ClickButton(); 
}
4

1 回答 1

1

试试这个代码:

  intStartIndex = 0;
  intEndIndex = 9;
  // Click three buttons
  for (i=1; i <= 3; i++)
  {
    btnIndex = Math.ceil(Math.random() * (intEndIndex - intStartIndex) + intStartIndex);  
    alias.Window("Button", btnIndex.toString()).ClickButton(); 
  }
于 2011-01-12T10:18:58.403 回答