Visual Editor and Step Execution

Description

The visual editor allows you to build flows step by step through a streamlined web interface. Each step defines an HTTP request with optional assertions.

Motivation

Building tests visually reduces errors and encourages quick experimentation. You can run an individual step to verify the request before executing the entire flow.

Example

{
  "title": "Check website",
  "steps": [
    { "title": "Open page", "method": "GET", "url": "https://example.org" }
  ]
}

Questions & Answers

Q: Can I edit the JSON directly?
A: Yes. Use the JSON editor for advanced modifications.

Comments

Execute a single step while adjusting headers or query parameters to save time during debugging.

Other Uses

The editor is well suited for demonstrations or workshops where API calls must be shown quickly.