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:

  1. Visit app.testified.com/signup
  2. Enter your email address and create a password
  3. Verify your email address by clicking the link in the verification email
  4. 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:

  1. Click on "New Project" in the dashboard
  2. Enter a name and description for your project
  3. Select the type of application (web, mobile, API, etc.)
  4. Choose your technology stack from the available options
  5. 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:

  1. Go to the "Tests" section in your project dashboard
  2. Click on "New Test"
  3. Select "Basic Functionality Test" from the template library
  4. Configure the test parameters for your application
  5. Click "Run Test" to execute the test

Step 6: View Your Results

After running your test, you can view the results:

  1. Go to the "Results" section in your project dashboard
  2. Click on the test run you just completed
  3. Explore the detailed results, including screenshots, logs, and performance metrics
  4. 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:

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