Automate Your First Test with AI Recorder
This guide shows you how to add new tests, automate them using AI Recorder, run the tests, and view reports. By the end, you'll have a working test scenario and a clear understanding of BlinqIO's AI-powered test automation workflow.
Verify your project and environment
Your current project and the selected environment are listed at the top. You can verify or change these settings before you move to the next steps.

Add a new feature and scenario
BlinqIO AI Test Engineer organizes tests into features and scenarios. A feature is a collection of one or more related test scenarios, like Shopping Cart, Login, Checkout, or Profile. A test scenario is an individual test case that consists of your automated steps.
NOTE
Test scenarios count toward your license.
To add a new feature, select the + button next to Features. This adds a new feature to your project along with a scenario called Scenario 1.

You can rename this feature and scenario if you'd like, or proceed to the next step.

Launch the AI Recorder (web)
Make sure the newly added scenario is selected, and then select the AI button to launch the web-based AI Recorder.

Record test steps
You can now perform your test steps in the browser. The AI Recorder automatically converts them into a readable scenario and generates Playwright test code in the background.
For your first test, we recommend recording a simple test with 5-8 steps.
TIP
Wait for each page or UI state to load before the next action. Use clear, repeatable actions and avoid random selections.
Here's a sample flow if you're using our demo application:
Log in with the demo credentials. (expand to view GIF)

Add a few items to the cart. (expand to view GIF)

Open the cart and add a quick assertion. (expand to view GIF)

Checkout and fill in shipping details. (expand to view GIF)

Log out. (expand to view GIF)

By the end, you should have a few recorded steps similar to what you see below.

Save your scenario
Select Save to save your work. This commits the generated scenario and the Playwright code to the Git branch that powers your project. You'll be redirected back to the features page.
Run your scenario
On the features page, select the blue play button to run the scenario. This opens the AI Terminal and starts running your test.

View Run Report
After the test completes, you're redirected to Run report on the reports page, which contains:
- Step-by-step execution details
- Screenshots for every action
- Run duration and status
- Run duration and status
- Environment and test data
- Console and network logs

View the generated code (optional)
One of BlinqIO's most powerful features is that it generates real, production-ready Playwright code. All of this code lives in a Git repository, and you can even connect your own Git repository instead of using BlinqIO's.
To view the generated code, select the View Code button for your scenario.


Next Steps
Now that you've successfully created and run your first automated test, it's time to dig deeper into the AI Recorder. Learn about the different assertions, custom steps, and parameterization options so you can craft your perfect test.
Start by reviewing: AI Recorder Basics
