Documentation
Documentation
Quick Start Guide
Last updated: 2024-06-01
Quick Start Guide
This guide will help you get started with Testified quickly. Follow these steps to set up your account, connect your first application, and start monitoring your software quality.
Step 1: Create an Account
To get started with Testified, you'll need to create an account:
- Visit app.testified.com/signup
- Enter your email address and create a password
- Verify your email address by clicking the link in the verification email
- Complete your profile with your name and organization details
Step 2: Create a Project
Once you've created your account, you'll need to create a project:
- Click on "New Project" in the dashboard
- Enter a name and description for your project
- Select the type of application (web, mobile, API, etc.)
- Choose your technology stack from the available options
- Click "Create Project" to finish
Step 3: Install the Testified SDK
To connect your application to Testified, you'll need to install our SDK:
For JavaScript Applications
# Using npm
npm install @testified/sdk
# Using yarn
yarn add @testified/sdk
For Python Applications
# Using pip
pip install testified-sdk
For Java Applications
Add the following to your Maven pom.xml
:
<dependency>
<groupId>com.testified</groupId>
<artifactId>testified-sdk</artifactId>
<version>1.0.0</version>
</dependency>
Step 4: Configure the SDK
Initialize the SDK in your application with your project API key:
JavaScript
import { Testified } from '@testified/sdk';
Testified.initialize({
apiKey: 'your-api-key',
environment: 'production', // or 'development', 'staging', etc.
releaseVersion: '1.0.0', // your application version
});
Python
from testified import Testified
Testified.initialize(
api_key='your-api-key',
environment='production', # or 'development', 'staging', etc.
release_version='1.0.0' # your application version
)
Java
import com.testified.Testified;
Testified.initialize(
"your-api-key",
"production", // or "development", "staging", etc.
"1.0.0" // your application version
);
Step 5: Run Your First Test
Now that you've set up the SDK, you can run your first test:
- Go to the "Tests" section in your project dashboard
- Click on "New Test"
- Select "Basic Functionality Test" from the template library
- Configure the test parameters for your application
- Click "Run Test" to execute the test
Step 6: View Your Results
After running your test, you can view the results:
- Go to the "Results" section in your project dashboard
- Click on the test run you just completed
- Explore the detailed results, including screenshots, logs, and performance metrics
- Use the insights to identify and fix any issues in your application
Next Steps
Now that you've set up Testified and run your first test, here are some next steps to explore:
- Set up continuous testing with your CI/CD pipeline
- Configure alerts to be notified of quality issues
- Explore advanced test scenarios for your application
- Learn about our QA and Testing Services
- Discover our Test Automation Strategy
Need Help?
If you encounter any issues or have questions, you can:
- Check our documentation for troubleshooting tips
- Contact our support team at support@testified.com
- Visit our Contact Page for more support options