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…

Apa itu Puppeteer exporter for Katalon Recorder?

Puppeteer exporter for Katalon Recorder adalah ekstensi Chrome yang dikembangkan oleh Sam Kirkland, dan fitur utamanya adalah "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Puppeteer exporter for Katalon Recorder

Unduh file ekstensi Puppeteer exporter for Katalon Recorder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
URL Resmi https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Deskripsi A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Ukuran File 66.5 KB
Jumlah Instalasi 1,000
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2019-05-07
Tanggal Publikasi 2019-05-07
Penilaian 3.78/5 Total 9 Penilaian
Pengembang Sam Kirkland
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
URL Halaman Kebijakan Privasi https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Bahasa yang Didukung 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"
    }
}