Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. If the condition property is not specified (i.e. is Empty), then the test case will be executed.
  2. else if the condition property for the test case is set, then the test case execution will be decided based on the value evaluated for the condition.
    1. If the value evaluated for the condition is truthy, then the test case will be executed and 
    2. if the value evaluated for the condition is falsy, then test case execution will be skipped.
    3. Note: for more information on javascript truthy / falsy values, please read this sitepoint article.
Info

This functionality is useful in creating dependency between test cases. e.g. if you want to decide the execution of a test case based on any previous test case, then you may read extracting variables from test case results.

 

The property can accept the following values:

...