Testing Whiz

A functional test automation companion for software quality engineers

Vad är Testing Whiz?

Testing Whiz är en Chrome-tillägg utvecklad av Cygnet Infotech, och dess huvudfunktion är "A functional test automation companion for software quality engineers".

Tilläggsskärmbilder

screenshot

Ladda ner Testing Whiz-förlängningens CRX-fil

Ladda ner Testing Whiz-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Testing Whiz Testing Whiz
ID aafbdoipoadpaigbgmclggjhfkjjnhoi
Officiell webbadress https://chromewebstore.google.com/detail/testing-whiz/aafbdoipoadpaigbgmclggjhfkjjnhoi
Beskrivning A functional test automation companion for software quality engineers
Filstorlek 118 KB
Antal Installationer 228
Aktuell Version 3.2
Senast Uppdaterad 2022-11-06
Publiceringsdatum 2019-01-29
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Cygnet Infotech
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.testing-whiz.com/
Stödda Språk 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",
        "*:\/\/*\/*"
    ]
}