AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

Co to jest AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing to rozszerzenie Chrome opracowane przez extension.aifex, a jego główną funkcją jest „Help tester to collaborate on exploratory testing sessions”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AIFEX | AI For Exploratory testing

Pobierz pliki rozszerzeń AIFEX | AI For Exploratory testing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
Oficjalny URL https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Opis Help tester to collaborate on exploratory testing sessions
Rozmiar pliku 951 KB
Liczba instalacji 59
Aktualna Wersja 0.13.0
Ostatnia Aktualizacja 2022-10-28
Data Publikacji 2020-03-24
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper extension.aifex
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.aifex.fr/
Adres URL Strony Pomocy https://www.aifex.fr/documentation-website
Obsługiwane Języki 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"
    }
}