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…

Τι είναι το Puppeteer exporter for Katalon Recorder;

Το Puppeteer exporter for Katalon Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sam Kirkland, και η κύρια λειτουργία του είναι "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Puppeteer exporter for Katalon Recorder

Λήψη αρχείων επέκτασης Puppeteer exporter for Katalon Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
Επίσημο URL https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Περιγραφή A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Μέγεθος Αρχείου 66.5 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2019-05-07
Ημερομηνία Δημοσίευσης 2019-05-07
Αξιολόγηση 3.78/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής Sam Kirkland
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Υποστηριζόμενες Γλώσσες 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"
    }
}