Quick Start Guide
This guide will get you up and running with ConductorQA in just a few minutes. By the end, you’ll have created your first project, test suite, and test case, and understand the basic workflow.
Step 1: Create Your Account
- Visit app.conductorqa.com
- Sign up with your email address
- Verify your email (check your inbox)
- Complete your profile setup
Step 2: Create Your First Project
Once logged in, you’ll see the dashboard. Let’s create your first project:
- Click “Create Project” or the ”+” button
- Enter a project name (e.g., “My Web App Tests”)
- Add a description (optional)
- Click “Create Project”
🎉 You’ve created your first project! Projects help organize your testing efforts by application, feature, or team.
Step 3: Set Up Your First Test Suite
Test suites group related test cases together. Let’s create one:
- Inside your project, click “Create Test Suite”
- Name it “Login Flow Tests”
- Add a description: “Tests for user authentication”
- Click “Create Suite”
Step 4: Add Test Cases
Now let’s add some test cases to your suite:
- Click “Add Test Case” in your test suite
- Create your first test case:
- Title: “User can login with valid credentials”
- Description: “Verify successful login with correct email/password”
- Expected Result: “User redirected to dashboard”
- Add a second test case:
- Title: “Invalid password shows error message”
- Description: “Verify error handling for incorrect password”
- Expected Result: “Error message displayed, user remains on login page”
Step 5: Execute Your First Test Run
Ready to run your tests? Here’s how:
- Click “Execute Suite” in your test suite
- Choose your execution environment (e.g., “Staging”)
- Assign the execution to yourself
- Click “Start Execution”
You’ll see the real-time execution dashboard where you can:
- Mark tests as Pass, Fail, or Skip
- Add notes and screenshots
- Track execution progress
- View detailed results
Step 6: View Results and Reports
After completing your test execution:
- Navigate to “Reports” in the main menu
- View your execution summary:
- Pass/fail rates
- Execution duration
- Test case details
- Historical trends
Next Steps: API Integration
Ready to automate? Let’s connect ConductorQA to your CI/CD pipeline:
Get Your API Key
- Go to Settings > API Keys
- Click “Generate New Key”
- Copy and securely store your API key
Quick API Example
# Create a test execution via API
curl -X POST "https://api.conductorqa.com/v1/executions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"project_id": "your-project-id",
"suite_id": "your-suite-id",
"environment": "staging",
"automated": true
}'
Congratulations! 🎉
You’ve successfully:
- ✅ Created a ConductorQA account
- ✅ Set up your first project and test suite
- ✅ Added test cases
- ✅ Executed your first test run
- ✅ Viewed reports and results
What’s Next?
Now that you’re up and running, explore these advanced features:
- Core Concepts - Understand the ConductorQA data model
- API Integration - Connect to your CI/CD pipeline
- Test Automation - Automate test execution
- Team Management - Invite team members and set permissions
Need Help?
- 📖 Check our troubleshooting guide
- 📧 Email us at hello@conductorqa.com
Happy testing! 🚀