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…

¿Qué es Puppeteer exporter for Katalon Recorder?

Puppeteer exporter for Katalon Recorder es una extensión de Chrome desarrollada por Sam Kirkland, y su función principal es "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Puppeteer exporter for Katalon Recorder

Descarga archivos de extensión Puppeteer exporter for Katalon Recorder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
URL Oficial https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Descripción A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Tamaño del Archivo 66.5 KB
Cantidad de Instalaciones 1,000
Versión Actual 2.0.0
Última Actualización 2019-05-07
Fecha de Publicación 2019-05-07
Calificación 3.78/5 Total de 9 Calificaciones
Desarrollador Sam Kirkland
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
URL de la Página de Política de Privacidad https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Idiomas Soportados 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"
    }
}