Testing Whiz

A functional test automation companion for software quality engineers

什麼是Testing Whiz?

Testing Whiz是由Cygnet Infotech開發的Chrome擴展程式,該擴展的主要功能是“A functional test automation companion for software quality engineers”。

擴展截圖

screenshot

下載Testing Whiz擴展crx文件

下載Testing Whiz擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A plugin to enable automation script recording in TestingWhiz test automation tool for Web automation                    

擴展基本資訊

名稱 Testing Whiz Testing Whiz
ID aafbdoipoadpaigbgmclggjhfkjjnhoi
官方網址 https://chromewebstore.google.com/detail/testing-whiz/aafbdoipoadpaigbgmclggjhfkjjnhoi
簡介 A functional test automation companion for software quality engineers
檔案大小 118 KB
安裝次數 228
目前版本 3.2
更新時間 2022-11-06
上架時間 2019-01-29
評分 3.67/5 共 3 次評分
開發者 Cygnet Infotech
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.testing-whiz.com/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Testing Whiz",
    "description": "A functional test automation companion for software quality engineers",
    "version": "3.2",
    "icons": {
        "128": "whiz.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "TwizTention"
    },
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "background.js",
            "contextMenu.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/localhost\/*"
            ],
            "js": [
                "engine.js",
                "listener.js",
                "jquery-3.2.1.min.js",
                "WelcomePage.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.html",
        "*.js"
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "",
        "contextMenus",
        "*:\/\/*\/*"
    ]
}