qtp:exit 函数
生活随笔
收集整理的這篇文章主要介紹了
qtp:exit 函数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、ExitAction() 退出當前操作,無論其本地(操作)循環屬性是什么。
2、ExitActionIteration() 退出操作的當前循環。
3、ExitComponent()退出當前組件并繼續業務流程測試中的下一個組件,無論組件的循環設置是什么。
4、ExitComponentIteration() 退出當前組件循環并繼續該組件的下一次循環,或者,如果當前組件沒有其他循環,則繼續業務流程測試中的下一個組件。
5、ExitGlobalIteration() 退出當前的全局循環,并使用全局數據表的下一行開始下一次循環。
6、ExitRun() 退出測試,無論其全局循環屬性是什么。
7、ExitTest() 退出整個業務流程測試,無論運行時循環設置是什么。
8、ExitTestIteration() 退出業務流程測試的當前循環并繼續下一次循環,或者如果沒有其他運行時參數循環,則退出測試運行。
?
| Exit Do | Provides a way to exit aDo...Loopstatement. It can be used only inside aDo...Loopstatement.Exit Dotransfers control to the statement following theLoopstatement. When used within nestedDo...Loopstatements,Exit Dotransfers control to the loop that is one nested level above the loop where it occurs. |
| Exit For | Provides a way to exit aForloop. It can be used only in aFor...NextorFor Each...Nextloop.Exit Fortransfers control to the statement following theNextstatement. When used within nestedForloops,Exit Fortransfers control to the loop that is one nested level above the loop where it occurs. |
| Exit Function | Immediately exits theFunctionprocedure in which it appears. Execution continues with the statement following the statement that called theFunction. |
| Exit Property | Immediately exits thePropertyprocedure in which it appears. Execution continues with the statement following the statement that called thePropertyprocedure. |
| Exit Sub | Immediately exits theSubprocedure in which it appears. Execution continues with the statement following the statement that called theSub. |
轉載于:https://www.cnblogs.com/hgfg331/p/3511073.html
總結
以上是生活随笔為你收集整理的qtp:exit 函数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [转载]ns2在linux安装过程
- 下一篇: Android 基本测试工具的使用