AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

Was ist AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing ist eine Chrome-Erweiterung, die von extension.aifex entwickelt wurde, und ihr Hauptmerkmal ist "Help tester to collaborate on exploratory testing sessions".

Erweiterungsscreenshots

screenshot

AIFEX | AI For Exploratory testing-Erweiterungs-CRX-Datei herunterladen

Laden Sie AIFEX | AI For Exploratory testing-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
Offizielle URL https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Beschreibung Help tester to collaborate on exploratory testing sessions
Dateigröße 951 KB
Installationsanzahl 59
Aktuelle Version 0.13.0
Letztes Update 2022-10-28
Veröffentlichungsdatum 2020-03-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler extension.aifex
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.aifex.fr/
Hilfeseite URL https://www.aifex.fr/documentation-website
Unterstützte Sprachen 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"
    }
}