Actify Studio documentation
Turn manual browser testing into automated tests, without writing code.
What Actify Studio is
Actify Studio turns manual browser testing into automated tests without writing code. It is a desktop studio with a real Chromium browser built in. You open your web application inside the app and use it normally; every click, typed value, dropdown choice and key press is recorded as a step.
The steps are translated live into three formats: a runnable Playwright test, numbered Manual Steps in plain English, and a Gherkin (BDD) scenario. Saved tests run from the app itself, and a whole project can be exported as a standalone Playwright project.
Actify Studio 1.0 is a free Windows desktop app, available through the Microsoft Store.
New here? Start with Getting started: install the app, then record, save and run your first test in five minutes.
Guides
Get started
Recording
Test framework
Key concepts
The words used across these guides, in plain language.
| Term | Meaning |
|---|---|
| Step (action) | One thing the user did or checked: navigate, click, type, select, press a key, wait, or an assertion. |
| Locator | How the test finds an element on the page again (by test id, role and name, label, placeholder, text, CSS or XPath). Each step stores several alternatives. |
| Assertion | A check that makes the test pass or fail, e.g. “this button is visible” or “this text equals Welcome”. |
| Page Object | A reusable description of one page: its named elements and its methods. |
| Method | A named, reusable sequence of steps on a Page Object, e.g. login(email, password). |
| Flow | A composition of methods from one or more Page Objects. Can be saved as a reusable building block or generated as a runnable test. |
| Suite | A named group of tests you run together. |
| Project | A self-contained folder with its own tests, Page Objects and Flows. |
| Environment | A named base address for a project (e.g. dev → http://localhost:3000). Switching environment runs the same tests against another server. |
| Headless / In-App | The two run modes: in a hidden background browser, or visibly inside the app’s browser. |
Something unclear or missing? Write to info@actify-studio.com.