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"
    }
}