AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

Cos'è AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing è un'estensione di Chrome sviluppata da extension.aifex, e la sua funzione principale è "Help tester to collaborate on exploratory testing sessions".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AIFEX | AI For Exploratory testing

Scarica i file di estensione AIFEX | AI For Exploratory testing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
URL Ufficiale https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Descrizione Help tester to collaborate on exploratory testing sessions
Dimensione del File 951 KB
Conteggio Installazioni 59
Versione Corrente 0.13.0
Ultimo Aggiornamento 2022-10-28
Data di Pubblicazione 2020-03-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore extension.aifex
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.aifex.fr/
URL della Pagina di Aiuto https://www.aifex.fr/documentation-website
Lingue Supportate 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"
    }
}