Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
seqout_free_form [2020/05/10 03:44]
admin removed
— (current)
Line 1: Line 1:
-[[Tag seqout|seqout tag]] allows you to output the system generated test sequence to a file in free form format. 
  
-Example: 
- 
-<mbt> 
- 
-    <script type="OnTransAction"> 
-      <seqout> 
-        <output> 
-           [curStateID]:[event] -> [targetStateID] 
-        </output> 
-      </seqout> 
-    </script> 
- 
-</mbt> 
- 
-Output: 
- 
-    LoginPage:bLogin -> EmployeeSearch 
-    EmployeeSearch:bSearch -> SearchResults 
-    SearchResults:lnkEmployee -> EmployeeDetails 
-    EmployeeDetails:bBack -> SearchResults 
-    ...