Testing Whiz

A functional test automation companion for software quality engineers

Hvad er Testing Whiz?

Testing Whiz er en Chrome-udvidelse udviklet af Cygnet Infotech, og dens hovedfunktion er "A functional test automation companion for software quality engineers".

Udvidelsesskærmbilleder

screenshot

Download Testing Whiz-udvidelses-CRX-fil

Download Testing Whiz-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Testing Whiz Testing Whiz
ID aafbdoipoadpaigbgmclggjhfkjjnhoi
Officiel URL https://chromewebstore.google.com/detail/testing-whiz/aafbdoipoadpaigbgmclggjhfkjjnhoi
Beskrivelse A functional test automation companion for software quality engineers
Filstørrelse 118 KB
Antal Installationer 228
Nuværende Version 3.2
Senest Opdateret 2022-11-06
Udgivelsesdato 2019-01-29
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Cygnet Infotech
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.testing-whiz.com/
Understøttede Sprog 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",
        "*:\/\/*\/*"
    ]
}