Puppeteer exporter for Katalon Recorder

A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…

Co je Puppeteer exporter for Katalon Recorder?

Puppeteer exporter for Katalon Recorder je rozšíření Chrome vyvinuté Sam Kirkland, a jeho hlavní funkcí je „A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Puppeteer exporter for Katalon Recorder

Stáhněte si soubory rozšíření Puppeteer exporter for Katalon Recorder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code.

If you're looking for a way of easily creating UI tests this is what you have been looking for.

This extension is based on the "Katalon Recorder" chrome extension. In order for this plugin to work you need to have the "Katalon Recorder" extension installed.                    

Základní Informace o Rozšíření

Název Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
Oficiální URL https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Popis A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Velikost souboru 66.5 KB
Počet instalací 1,000
Aktuální Verze 2.0.0
Poslední Aktualizace 2019-05-07
Datum Vydání 2019-05-07
Hodnocení 3.78/5 Celkem 9 Hodnocení
Vývojář Sam Kirkland
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
URL Stránky Zásad Ochrany Soukromí https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Puppeteer exporter for Katalon Recorder",
    "version": "2.0.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "alarms",
        "storage"
    ],
    "offline_enabled": true,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}