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