Bugster CLI Overview

Bugster CLI is an AI-powered command-line tool that generates, executes, and maintains end-to-end tests for web applications. Use it to interact with Bugster directly from your IDE.

🚀 Initial Setup Commands

These commands are used during initial project configuration.
CommandDescriptionWhen to use
bugster authConfigure your Bugster API keyWhen switching organizations or updating credentials
bugster initInitialize Bugster in your repositoryOnce per repository
bugster quickstartInitialize project and generate 3 tests automaticallyPerfect for first-time setup

🧪 Core Testing Commands

Commands you’ll use regularly in your development workflow.
CommandDescriptionUse cases
bugster generateAnalyzes code and generates test specsGenerate tests for new features, use --page for specific pages
bugster runExecutes test specs in automated browserValidate before deployment, run in CI/CD, use --parallel
bugster updateUpdates existing tests based on code changesKeep tests synchronized, automate in PRs

🔥 Advanced Testing

CommandDescriptionUse cases
bugster destructiveRuns destructive agents to find bugs through edge casesDiscover vulnerabilities, stress testing, simulate unexpected behaviors
Start with bugster quickstart if you’re new to Bugster - it sets up everything and generates your first tests automatically.