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…

What is Puppeteer exporter for Katalon Recorder?

Puppeteer exporter for Katalon Recorder is a Chrome extension developed by Sam Kirkland, and its main feature is "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".

Extension Screenshots

screenshot

Download Puppeteer exporter for Katalon Recorder Extension CRX File

Download Puppeteer exporter for Katalon Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
Official URL https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Description A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
File Size 66.5 KB
Installation Count 1,000
Current Version 2.0.0
Last Updated 2019-05-07
Publish Date 2019-05-07
Rating 3.78/5 Total 9 Ratings
Developer Sam Kirkland
Email [email protected]
Payment Type free
Help Page URL https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
Privacy Policy Page URL https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Supported Languages 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"
    }
}