Isolate a test case

Run a test case from a clean slate.

In AutoTest v2 the AutoTest configuration is run from top to bottom and each step begins where the last step ends. This means that blocks at the top of your configuration can impact downstream tests. This may make it necessary to isolate downstream tests to ensure that they are run from the state of the VM immediately after the setup is done.

Isolating tests in AutoTest v2 is very simple and can be done using the Isolate wrapper block.

How to use the isolate block in your AutoTest configuration:

  1. Navigate to the Tests portion of the AutoTest settings.

  2. Click the Isolate block to add it to the bottom of your AutoTest configuration or drag-and-drop it to the desired location.

  3. Nest the test you want to isolate within the Isolate wrapper block.

Last updated