Manual Testing - Classic
Welcome!
This tutorial walks you through the whole manual testing flow in a Classical project, from an empty project to a finished report you can share.
You do not need any automated tests or code for this. If you are brand new to Testomat.io, this is the right place to start.
What you will do:
- Create a Classical project.
- Add a suite to hold your tests.
- Write a few test cases.
- Run them manually.
- Read and share the report.
Create a project
Section titled “Create a project”A project is the home for all your tests, runs, and reports.
- On app.testomat.io, click Create in the top-right corner.
- Enter a name in the Project Title field.
- Choose a Classical Project.
- Leave Fill demo data unchecked, so you start with a clean project.
- Click Create.

Your empty project opens, ready for its first suite.
Create a suite
Section titled “Create a suite”Test cases always live inside a suite, so you make a suite first. A suite is just a group of related tests, like all the tests for your login page.
- Go to Tests page.
- Click New suite.
- Type a name in the suite input field.
- Press
Enter.

That’s it. Your suite appears in the tree on the left.
You can add as many suites as you like, and group them in folders later if you need to.
Add test cases
Section titled “Add test cases”Now add the tests you want to run. You can create several at once and fill in the details after.
- Click your suite to select it.
- Type a test name in the input field, for example, “User can log in with valid details.”
- Click Create.
- Repeat for a few more tests, or turn on the Bulk switch to add several names at once, one per line.

New tests are marked as manual by default, which is exactly what you need.
Next, open a test and describe how to run it, so anyone in your team can follow it:
- Click a test to open it.
- Then click Edit.
- In the editing area, enter the steps and the expected result.
- Click Save.

The Classical editor uses a block-based layout, so it is easy to add an expected result to each step and attach images directly within each step.
It is still fully Markdown-compatible. Keep steps short and clear, one action per line.
For everything the editor can do, see the Editor.
Bulk-create Tests
Section titled “Bulk-create Tests”Read full article: Bulk Edit.
You also can add multiple tests by listing their names, without adding each one individually:
- Open (or create) a suite.
- Turn on the Bulk toggle.
- Type one test name per line in the input field.
- Click Create - every line becomes a separate test, all added together.

Run your tests manually
Section titled “Run your tests manually”With your tests written, you can run them and record what happened.
- Open the Runs tab in the sidebar.
- Click Manual Run.
- Give the run a title, and set the environment if you want to note the browser or device.
- Select tests you need to complete or switch to All Manual Tests.
- Click Launch.

You now see your test cases one by one. For each test, follow the steps and mark the result:
| Mark the result | Shortcut |
|---|---|
| Passed, if it worked as expected. | Cmd+Enter on Mac, Ctrl+Enter on Windows |
| Failed, if it did not. You can add a note, attach a screenshot, or link a defect. | Cmd+U on Mac, Ctrl+U on Windows |
| Skipped, if you did not run it. | Cmd+I on Mac, Ctrl+I on Windows |

If the run has many tests, use the search box in the run to jump straight to a test or suite by name instead of scrolling through the whole list.
When all tests have results, click Finish Run to close the run. That is what turns it into a report.
For more on running tests, see Running Tests Manually.
Read and share the report
Section titled “Read and share the report”Once the run is complete, Testomat.io automatically generates a report for you.
- On the Runs page, click your run to open its report.
- Review the results: how many passed, failed, or were skipped, plus the duration and who ran it.
- Filter by status or tag to focus on what matters, for example, just the failures.

To share the outcome with your team or stakeholders, use the share option on the report. For a deeper look at reports, see Reports.
Next steps
Section titled “Next steps”- Ready to add automation? See Import Tests From Source Code.
- See Test Case Creation and Editing.