Skip to main content
Supatest offers multiple approaches to creating test cases, each suited to different needs and workflows. Whether you prefer hands-on control, automation, or a combination of both, you can build comprehensive tests efficiently.

Test Creation Workflow

Every test starts the same way:
  1. Create a test case - Give it a name, select a folder, add tags
  2. Add scenario notes (optional) - Describe what the test should do
  3. Choose your creation method - Manual, AI-assisted, or hybrid
From there, you take one of two main routes:

Manual Test Creation

Manual creation gives you full control over every step in your test.

Visual Editor

The Editor is a step-by-step builder where you:
  • Add steps one at a time (Click, Fill, Navigate, Verify, etc.)
  • Use the Element Picker to select elements from a live browser
  • Configure each step’s parameters precisely
  • Run and debug in real-time
Best for:
  • Precise control over test logic
  • Complex conditional flows
  • Tests requiring specific timing or waits
  • Learning how tests work
Learn more about the Editor →

Recorder

The Recorder captures your browser interactions automatically:
  • Click “Record” and interact with your application
  • Actions are converted to test steps in real-time
  • Edit and refine recorded steps afterward
Best for:
  • Quick test creation
  • Capturing complex user flows
  • Teams new to test automation
  • Exploratory test building
Learn more about the Recorder →

AI-Powered Test Creation

AI automation lets you describe what you want to test and have Supatest generate the steps.

Test Planner Agent

The Test Planner Agent generates complete test plans from high-level descriptions:
  • Describe a feature or user flow in natural language
  • AI creates a comprehensive test plan with multiple scenarios
  • Review, edit, and execute the generated tests
Best for:
  • Rapid test coverage expansion
  • Testing new features quickly
  • Generating edge case scenarios
  • Teams with limited QA resources
Learn more about Test Planner Agent →

AI Chat

AI Chat provides conversational test creation and modification:
  • Chat with AI to create or modify tests
  • Ask for specific steps to be added
  • Get suggestions for assertions and improvements
Best for:
  • Iterative test building
  • Getting unstuck when you’re not sure what to do next
  • Modifying existing tests with natural language
Learn more about AI Chat →

Best of Both Worlds

The most effective approach often combines manual and AI methods:

Hybrid Workflow

  1. Start with AI - Generate a test plan or initial steps
  2. Refine manually - Edit, reorder, and perfect the steps
  3. Use the recorder - Capture tricky interactions
  4. Element Picker - Fix locators with precision
  5. AI assistance - Ask AI Chat to improve assertions

When to Use What

ScenarioRecommended Approach
New feature, need quick coverageAI Test Planner
Complex form with many fieldsRecorder + Editor refinement
Precise timing-sensitive testManual Editor
Expanding existing testAI Chat
Learning the productRecorder, then study the steps
Debugging a flaky testManual Editor with Element Picker
Learn more about combining approaches →

Scenario Notes

Before diving into step creation, consider adding scenario notes to your test:
  • What it tests: The user story or acceptance criteria
  • Preconditions: What state the application should be in
  • Test data: Any specific data requirements
  • Expected outcome: What success looks like
Scenario notes help:
  • Document the test’s purpose
  • Guide AI when generating steps
  • Help teammates understand the test
  • Serve as a reference when debugging

Next Steps