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はSam Kirklandによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…」です。

拡張機能のスクリーンショット

screenshot

Puppeteer exporter for Katalon Recorder拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}