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 là gì?

Puppeteer exporter for Katalon Recorder là một tiện ích mở rộng Chrome được phát triển bởi Sam Kirkland, và tính năng chính của nó là "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Puppeteer exporter for Katalon Recorder

Tải xuống các tệp mở rộng Puppeteer exporter for Katalon Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Puppeteer exporter for Katalon Recorder Puppeteer exporter for Katalon Recorder
ID idgpmhfldhpaoiflfleanildmnojchhd
URL Chính Thức https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd
Mô tả A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Kích Thước Tệp 66.5 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2019-05-07
Ngày Phát Hành 2019-05-07
Đánh Giá 3.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Sam Kirkland
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder
URL Trang Chính Sách Bảo Mật https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}