Run your first automated test in under 2 minutes.
1. Install ZeniTest CLI
Section titled “1. Install ZeniTest CLI”Install the CLI globally using your preferred package manager:
npm install -g zenitestpnpm add -g zenitestyarn global add zenitestbun install -g zenitest2. Authenticate API Key
Section titled “2. Authenticate API Key”zenitest auth your_api_key3. Install AI Agent Skill (Optional)
Section titled “3. Install AI Agent Skill (Optional)”Enable coding assistants (Claude Code, Cursor, Codex, etc.) to generate and maintain tests automatically:
npx skills add zeni-org/zenitestpnpm dlx skills add zeni-org/zenitestyarn dlx skills add zeni-org/zenitestbunx skills add zeni-org/zenitest4. 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_logintitle: SauceDemo Login TestprodURL: https://www.saucedemo.comexpectedResult: 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 displayed5. Run Tests
Section titled “5. Run Tests”zenitest run --dir zeni_testsThat’s it! ZeniTest will execute your test actions and report pass/fail status in your terminal.