Writing Test Steps
Good TesterArmy steps read like instructions you would give to a teammate sitting next to you.
Write what a user is trying to do, not how an automation script should do it. The agent observes the app, clicks real UI, recovers from normal UI friction, and verifies the result. Your job is to give it a clear intent and a clean stopping point.
The short version
- Write steps in plain language.
- Give each step one job.
- Split actions and checks into separate steps.
- Use labels users can see in the UI.
- Avoid selectors, internal component names, and implementation details.
- Tell the agent what must be true before the step can pass.
- Keep a test to one flow - most are 3-10 steps.
Write Like You Talk
Best:
Also good:
Avoid:
TesterArmy is not trying to replay selectors. It is trying to act like a user. User-visible labels like Pricing, New Project, Save, Invite teammate, and Run test are the most useful anchors.
One Step, One Intent
The agent focuses on the current step and gets only a small preview of what comes next. When a step mixes too many actions, the agent has to decide where the step ends. That creates ambiguity and wastes run time.
Instead of:
Use:
Each step now has a clear beginning, a clear end, and a clear pass condition.
The same rule cuts the other way. Do not expand one intent into mechanical micro-steps - the agent sequences the clicks, typing, and waits inside a step on its own, and every extra step costs run time.
Instead of:
Use:
Split Actions From Assertions
Use action steps for doing something. Use assertion steps for checking that something is true.
Good split:
Weaker:
The split matters because assertion steps are treated as focused verification. The agent can still navigate or scroll if needed, but it should not start changing data, uploading files, or doing unrelated setup during an assertion.
Use The Right Step Type
TesterArmy supports different step types. Pick the type that matches the job.
Some step types are web-only: javascript and microphone steps are only supported on web tests and cannot be added to mobile tests.
files steps work on both platforms, with different delivery. On web tests the agent uploads the attached files into the page. On mobile tests the attached photos and videos are preloaded into the device photo library before the run starts, and the agent selects them through your app’s own media picker - so mobile projects only accept photo and video uploads (.png, .jpg, .jpeg, .mp4, .mov).
Any step can be disabled instead of deleted: a disabled step stays saved on the test but is skipped by every run, so you can park a step you are not ready to drop and re-enable it later. Set disabled: true on the step through the API, or use the disable action in the step editor.
Do not hide login inside a broad action step. If the flow needs authentication, make it a login step. Do not ask for screenshots inside normal action or assertion steps; use a dedicated screenshot step.
When a flow needs a simple text-based file (for example a CSV import fixture or a JSON config) that is not attached to the test, the agent can generate one on the fly during the run and upload it. Prefer attached project files with a files step when the exact file content matters; generated files are best for dynamic flows where any well-formed fixture will do. Generated files are limited to text formats (csv, json, md, svg, txt, xml) and are discarded when the run ends.
Add Context, Not A Script
Good steps include the important business context:
They do not need browser-level instructions unless the exact route or label matters:
Avoid micromanaging timing and mechanics:
The agent already waits for page changes, checks fresh page state after important actions, handles transient toasts, and retries normal UI targeting problems. Tell it the goal, not every low-level click.
Be Specific
Vague checks are harder to evaluate.
Weak:
Better:
Weak:
Better:
For copy checks, quote exact text only when exact copy matters. If the intent is looser, say so:
Keep Tests Focused
A good test usually covers one user flow. Many useful tests are 3-10 steps, and a test cannot have more than 30.
Length is not just a style preference. Every run shares one time budget across all of its steps, so a long test can spend it before reaching the final steps - and steps that never run produce no verdict. The same applies in the other direction: splitting one intent into many mechanical micro-steps (navigate, type, click as separate steps) spends the budget on step bookkeeping instead of testing.
Split a test when it crosses product areas like signup, onboarding, project creation, invites, billing, or running a QA test. Put the resulting tests in a group and run the group: each test gets its own time budget, a failure points at one flow instead of blocking everything after it, and shared setup like login can move into the group’s preparation test instead of being repeated.
Common Rewrites
Review Checklist
Before running a test, scan the steps and ask:
- Could a teammate follow this without seeing the code?
- Does each step have one clear intent?
- Are actions and assertions split?
- Are user-visible labels included where useful?
- Are credentials handled by a login step or saved project credentials?
- Is the expected result specific enough to pass or fail confidently?
If the answer is yes, the agent has a much better chance of producing stable, useful results.
