Quick Start
What is Qualflare?
Qualflare is a QA test management platform for organizing, executing, and tracking software testing. It supports manual tests through the web UI and automated test result collection via the CLI.
Prerequisites
Before creating test cases, you need:
- A Qualflare account — sign up at qualflare.com
- A workspace and project — created during the onboarding flow after sign-up
Creating Your First Test Case
Test cases are the individual tests you want to run.
- In your project, navigate to Browse in the left sidebar
- Open a suite and click New Case
- Fill in the test case details:
- Title: A clear, descriptive name (e.g., "User login with valid credentials")
- Description: What the test validates
- Steps: Step-by-step instructions to execute the test
- Expected Result: What should happen if the test passes
- Click Save
Collecting CLI Test Results
The Qualflare CLI (qf) collects test results from 20+ testing frameworks and uploads them to your project.
Installing the CLI
bash
# macOS (Homebrew)
brew install qualflare/tap/qf
# macOS/Linux (binary)
curl -sSL https://get.qualflare.com/install.sh | shRunning Your Tests
Run your tests with your preferred framework:
bash
# Example with pytest
pytest tests/ --junitxml=results.xml
# Example with Jest
jest --ci --reporters=default --reporters=jest-junitCollecting Results
bash
qf collect results.xml \
--project "Web App Tests"The CLI will:
- Detect the test framework automatically
- Parse the results file
- Upload results to your Qualflare project
- Create a new launch with the results
Viewing Results in Qualflare
- Navigate to your project in Qualflare
- Click Launches in the sidebar
- Click on the launch you created to see:
- Overall pass/fail status
- Individual test case results
- Failure details and stack traces
Next Steps
- Concepts — Workspaces, projects, test cases, launches, and other entities
- How-to Guides — Creating test plans, tracking defects, analyzing results
- CLI Tool Documentation — Commands, supported frameworks, CI/CD integration
See also: FAQ · Troubleshooting