AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

Qu'est-ce que AIFEX | AI For Exploratory testing ?

AIFEX | AI For Exploratory testing est une extension Chrome développée par extension.aifex, et sa fonction principale est "Help tester to collaborate on exploratory testing sessions".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension AIFEX | AI For Exploratory testing

Téléchargez les fichiers d'extension AIFEX | AI For Exploratory testing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        AIFEX (AI For Exploratory testing) helps testers to collaborate during exploratory test sessions by advising them to perform interactions that have rarely or never been explored. The main advantage is that it promotes diversity of tests.

AIFEX consists of two main elements:
* A chrome plugin that listens to all interactions performed by testers, transmits them to the server, requests predictions for future interactions and visually highlights the expected interaction.
*  A central server that stores all interactions performed by testers, integrates them into an AI and returns predictions calculated by the AI indicating future interactions that should be performed by testers.                    

Informations de Base sur l'Extension

Nom AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
URL Officiel https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Description Help tester to collaborate on exploratory testing sessions
Taille du Fichier 951 KB
Nombre d'Installations 59
Version Actuelle 0.13.0
Dernière Mise à Jour 2022-10-28
Date de Publication 2020-03-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur extension.aifex
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.aifex.fr/
URL de la Page d'Aide https://www.aifex.fr/documentation-website
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AIFEX | AI For Exploratory testing",
    "version": "0.13.0",
    "description": "Help tester to collaborate on exploratory testing sessions",
    "permissions": [
        "activeTab",
        "webNavigation",
        "tabs",
        "desktopCapture",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "images\/aifex_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tabScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "AIFEX",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "index.js"
    }
}