Node ReferenceSelector Node

Selector Node

The Selector Node is a powerful feature used within Test Runners to dynamically select and execute a collection of test cases based on specific criteria. This allows you to build and maintain test suites without manually adding each new test case to the runner.

Configuration

  • mode: The method for selecting test cases. The available modes are:
    • FOLDER: Selects all test cases within the specified folder(s), but not from sub-folders.
    • FOLDER_DEEP: Selects all test cases within the specified folder(s) and all of its sub-folders.
    • TAG: Selects all test cases that have been tagged with the specified tag(s).
  • folders: A list of folder paths to select test cases from when in FOLDER or FOLDER_DEEP mode.
  • tags: A list of tags to select test cases with when in TAG mode.
  • parallelLevel: The number of test cases selected by this node to run in parallel. Defaults to 1 (sequential).
  • requestEnvConfig: Allows you to override the environment configuration (Server, Auth, and Variable Group) for all test cases executed by this selector. This is a powerful way to run different test suites against different environments from a single Test Runner.