AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

AIFEX | AI For Exploratory testing là gì?

AIFEX | AI For Exploratory testing là một tiện ích mở rộng Chrome được phát triển bởi extension.aifex, và tính năng chính của nó là "Help tester to collaborate on exploratory testing sessions".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AIFEX | AI For Exploratory testing

Tải xuống các tệp mở rộng AIFEX | AI For Exploratory testing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
URL Chính Thức https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Mô tả Help tester to collaborate on exploratory testing sessions
Kích Thước Tệp 951 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.13.0
Cập Nhật Lần Cuối 2022-10-28
Ngày Phát Hành 2020-03-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển extension.aifex
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.aifex.fr/
URL Trang Trợ Giúp https://www.aifex.fr/documentation-website
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}