Updated on 2025-08-19 GMT+08:00

Using Automated API Test Cases

A rich UI is provided for writing of automated API test cases. You can orchestrate test steps in a visual manner, use various checkpoints, configure extraction as needed, and quickly generate test cases that match the core API logic without coding. You can arrange API test sequence by dragging and dropping test steps to generate your own strategies for automated testing. You can also generate automated API test scripts from scenarios to avoid repetitive tasks, and focus on exploratory testing and other creative and valuable test activities.

An automated API test case consists of basic information and scripts.

  • Basic information is for managing and describing the test case, including the name (mandatory), type, module, version, sprint, associated requirements, ID, tag, test case level, processor, folder, description, prerequisites, test steps, and expected results.
  • A script defines automated test procedure, including test steps, logic control, and test parameters.

The process of using an automated API test case consists of three stages: preparation, testing, and destruction.

The preparation stage corresponds to the Pre-steps tab page to prepare for the test prerequisites. The testing stage corresponds to the Test Procedure tab page to implement the API function test. The destruction stage corresponds to the Post-steps tab page to release or restore the test data in the preparation and testing stages.

  • (Optional) Preparation stage
    • In this stage, prepare the prerequisite data required in the testing stage. If there is no prerequisite, skip this stage.
    • In this stage, the prerequisites are initialized using API calls. If the data of the prerequisites needs to be referenced in the testing stage, you can use parameter passing to parameterize the data. For details, see Setting the Response Extraction of an API Script.
  • Testing stage

    Define the API core test steps. The test steps in the testing stage can reference the parameters extracted in the preparation stage.

  • (Optional) Destruction stage
    • To avoid impacting other tests or the following test, clear the test environment data after each test, reset the test environment, and delete the data created in the preparation stage.
    • If no data needs to be deleted, ignore this stage. You can delete data using API calls. The test steps in the destruction stage can reference the parameters extracted in the preparation stage.