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…
Was ist Puppeteer exporter for Katalon Recorder?
Puppeteer exporter for Katalon Recorder ist eine Chrome-Erweiterung, die von Sam Kirkland entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".
Erweiterungsscreenshots
Puppeteer exporter for Katalon Recorder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Puppeteer exporter for Katalon Recorder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | idgpmhfldhpaoiflfleanildmnojchhd |
Offizielle URL | https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd |
Beschreibung | A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way… |
Dateigröße | 66.5 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2019-05-07 |
Veröffentlichungsdatum | 2019-05-07 |
Bewertung | 3.78/5 Insgesamt 9 Bewertungen |
Entwickler | Sam Kirkland |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder |
URL der Datenschutzrichtlinien-Seite | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md |
Unterstützte Sprachen | 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" } } |