Rational Robot中自动进行100次操作

类别:软件工程 点击:0 评论:0 推荐:
Rational Robot中的SQA Basic与Basic语言极为类似,下面是一个for循环的例子,其中cstri()函数把整数转换成字符串。
Sub Main
    Dim Result As Integer
    Dim i As Integer
    ……
   
     'begin of for loop
     for i=1 to 100 step 1 
     ……
     InputKeys cstr(i*3) '这个地方设置输入值为I*3.
     ……
    next
    'end of for loop
    ……
End Sub

本文地址:http://com.8s8s.com/it/it34906.htm