Skip to content

Quickstart Guide

Get started with ZeniTest in under 2 minutes.

Run your first automated test in under 2 minutes.


Install the CLI globally using your preferred package manager:

Terminal window
npm install -g zenitest

Terminal window
zenitest auth your_api_key

Enable coding assistants (Claude Code, Cursor, Codex, etc.) to generate and maintain tests automatically:

Terminal window
npx skills add zeni-org/zenitest

4. Create Test Case (zeni_tests/tc_login.yaml)

Section titled “4. Create Test Case (zeni_tests/tc_login.yaml)”

Write manually or use the slash command in your AI agent: /zenitest Create a login test case for SauceDemo.

id: tc_login
title: SauceDemo Login Test
prodURL: https://www.saucedemo.com
expectedResult: Inventory page loaded.
steps:
- navigate: /
- act: Type 'standard_user' into 'Username'
- act: Type 'secret_sauce' into 'Password'
- act: Click 'Login'
- validate: Verify 'Products' page title is displayed

Terminal window
zenitest run --dir zeni_tests

That’s it! ZeniTest will execute your test actions and report pass/fail status in your terminal.