for i = 1 to 2
step1
........
......
........
......
if a>1 then
????
endif
step2
.............
............
next
qtp中我想执行到条件语句之后不执行step2,回到step1继续执行怎么办
for i = 1 to 2
if i=1 then
step1
........
......
........
......
else if i<>1 then
step1
........
......
........
......
step2
.............
............
endif
next