Skip to content
Documentation

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

Key concepts

The words used across these guides, in plain language.

TermMeaning
Step (action)One thing the user did or checked: navigate, click, type, select, press a key, wait, or an assertion.
LocatorHow 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.
AssertionA check that makes the test pass or fail, e.g. “this button is visible” or “this text equals Welcome”.
Page ObjectA reusable description of one page: its named elements and its methods.
MethodA named, reusable sequence of steps on a Page Object, e.g. login(email, password).
FlowA composition of methods from one or more Page Objects. Can be saved as a reusable building block or generated as a runnable test.
SuiteA named group of tests you run together.
ProjectA self-contained folder with its own tests, Page Objects and Flows.
EnvironmentA named base address for a project (e.g. dev → http://localhost:3000). Switching environment runs the same tests against another server.
Headless / In-AppThe two run modes: in a hidden background browser, or visibly inside the app’s browser.
Actify Studio documentation