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…”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | idgpmhfldhpaoiflfleanildmnojchhd |
官方網址 | 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" } } |