This is an old revision of the document!


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
  ...