AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

AIFEX | AI For Exploratory testingとは何ですか?

AIFEX | AI For Exploratory testingはextension.aifexによって開発されたChromeの拡張機能で、その主な機能は「Help tester to collaborate on exploratory testing sessions」です。

拡張機能のスクリーンショット

screenshot

AIFEX | AI For Exploratory testing拡張機能のCRXファイルをダウンロード

AIFEX | AI For Exploratory testing拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
公式URL https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
説明 Help tester to collaborate on exploratory testing sessions
ファイルサイズ 951 KB
インストール数 59
現在のバージョン 0.13.0
最終更新日 2022-10-28
公開日 2020-03-24
評価 5.00/5 合計 1 レビュー
開発者 extension.aifex
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.aifex.fr/
ヘルプページのURL https://www.aifex.fr/documentation-website
対応言語 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"
    }
}