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…
Cos'è Puppeteer exporter for Katalon Recorder?
Puppeteer exporter for Katalon Recorder è un'estensione di Chrome sviluppata da Sam Kirkland, e la sua funzione principale è "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Puppeteer exporter for Katalon Recorder
Scarica i file di estensione Puppeteer exporter for Katalon Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | idgpmhfldhpaoiflfleanildmnojchhd |
URL Ufficiale | https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd |
Descrizione | A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way… |
Dimensione del File | 66.5 KB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2019-05-07 |
Data di Pubblicazione | 2019-05-07 |
Valutazione | 3.78/5 Totale 9 Valutazioni |
Sviluppatore | Sam Kirkland |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder |
URL della Pagina della Politica sulla Privacy | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md |
Lingue Supportate | 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" } } |