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
电子邮箱 [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"
    }
}