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
官方URL 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",
        "*:\/\/*\/*"
    ]
}