Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

qualiti-ai/py-qualiti

Repository files navigation

Qualiti.ai Python Tools and Package

🔗 Qualiti.ai is a very powerful paid platform. This repo is called qualiti but is a free, open-source Python Package and Command Line Interface (CLI) for you to build your own automated pipelines using AI and see examples of what can be done with AI.

This package provides easy-to-use tools that can benefit developers and testers! Just take a look below to see what's available.

Requirements

  • 🐍 Python 3.8.12 or higher
  • 📦 Poetry as package manager if you are contributing
  • Having access to both allows you to use all features and examples, so note which you'll need:

Installation

This project currently supports these models and providers, but you must have access to them:

  • OpenAI (gpt-3.5-turbo is the default model)
  1. Install qualiti with your favorite package manager:

    pip install qualiti
  2. Set up the model and/or provider you want to use.

    OpenAI


    Set your OPENAI_API_KEY Environment Variable. You can use the qualiti set-env command if needed:

    qualiti conf set-env OPENAI_API_KEY <your-api-key>

    💡 You can also use a .env file or manage Environment Variables your own way! Use the example.env template as an example

    🤗 HuggingFace


    Set your HUGGINGFACE_ACCESS_TOKEN Environment Variable. You can use the qualiti set-env command if needed:

    qualiti conf set-env HUGGINGFACE_ACCESS_TOKEN <your-access-token>

    💡 Make sure to source the config file or restart the Terminal to register the changes

  3. Then start using qualiti in the CLI or as a package in your project:

    qualiti --help
    from qualiti import ai
    
    PROMPT = """
    Write a one-sentence greeting as a {0}
    """
    
    openai_response = ai.get_completion(PROMPT.format("pirate"))

Configuration

This tool allows you to Set and Get key-value pairs in your Environment Variables or the qualiti.conf.json.

💡 This is shown in Step 2 of the Installation section

Usage

qualiti conf [COMMAND] [OPTIONS]

Examples

This is helpful if you know that your elements are in specific files. This makes tools like Attributer faster and cheaper since the AI will only look at files that you care about.

For example, in Angular, you may know that your HTML only exists in these file patterns:

  • *.component.ts
  • *.component.html

We can set the GLOB_PATTERN value to only look for component files.

qualiti conf set-conf GLOB_PATTERN "*.component.*"

💡 See the Python glob and fnmatch docs for details on how to create glob patterns

Attributer

Use AI to auto-add data-testid attributes to HTML code.

🤖 Usage

qualiti attr testid [PATH] [OPTIONS]

💡 You can enter a path to a single file or to a directory.

If PATH is a directory, it will recursively look for all supported files in that directory and its subdirectories.

See qualiti.conf.json for the default supported file types 👀

You can update this list using set-conf:

qualiti conf set-conf SUPPORTED_FILES "[.html, .tsx]"

Examples:

# file
qualiti attr testid examples/StoryView.tsx

# directory
qualiti attr testid examples/SubComponents

🤕 Problem

Although it's "best practice" for Web Pages to have dedicated attributes for Test Automation and Accessibility (a11y), it seems to be an afterthought and is not commonly followed.

  • ❌ This makes the website inaccessible for a large group of people (ie screen readers, keyboard navigation)
  • ❌ This makes it difficult to design and create Test Automation for the UI (ie component, end-to-end)

Ideally, developers would design their UI and components with these attributes in mind as they code since adding them is simple -- especially with a proper Design System -- but imagine a developer inheriting an existing project because they're a new hire, moving teams, or jumping into a project to help out. Spending the time and energy to do all of this manually isn't as simple:

  1. Find the appropriate files (could be dozens or hundreds!)
  2. Locate the relevant elements in each file
  3. Add these attributes with helpful names for each element

✅ Solution

Using AI, we can do all 3 steps automatically!

  1. Provide the file(s) like a filename.tsx or a folder like /Components
  2. AI adds a data-testid to each relevant element
  3. The new file is saved and can now be compared to the original in case the dev wants to make any changes

💡 Theoretically, this approach should work for any Web Framework like Angular, React, Vue, etc!

💭 Considerations

See attributer.py for the prompt and commands used.

  • OpenAI ain't free, so be cognizant of how many files you target since each file will invoke the AI
  • Use git so you get a diff before you push the updated files.

About

Qualiti.ai creates and maintains automated tests for any web application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages