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…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Puppeteer exporter for Katalon Recorder
قم بتنزيل ملفات الامتداد Puppeteer exporter for Katalon Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder |
عنوان صفحة سياسة الخصوصية | 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" } } |