Resurrectio
Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
ما هو Resurrectio؟
Resurrectio هو إضافة Chrome تم تطويرها بواسطة ebrehault، والميزة الرئيسية لها هي "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Resurrectio
قم بتنزيل ملفات الامتداد Resurrectio بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
"Any phantom deserves a resurrection." Resurrectio is a Chrome extension allowing to record a sequence of browser actions and to produce the corresponding CasperJS script. Resurrectio uses minimalist and functional-oriented selectors, so recorded sequences keep valid across layout and design changes. As CasperJS is based on PhantomJS, a headless WebKit engine, it evaluates Javascript, recorded sequences are not be limited to pure HTML interactions, targeted pages javascript-supported behaviors will be accurately reproduced. Resurrectio also provides a way to produce screenshots alongside your test scenario, and can export comments + screenshots in ReStructuredText format in order to generate documentation automatically from the test sequences. NEW FEATURE: Resurrectio allows to run the recorded script directly on casperbox.com.
معلومات أساسية عن التمديد
الاسم | Resurrectio |
ID | kicncbplfjgjlliddogifpohdhkbjogm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/resurrectio/kicncbplfjgjlliddogifpohdhkbjogm |
الوصف | Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots. |
حجم الملف | 50.93 KB |
عدد التثبيتات | 1,785 |
النسخة الحالية | 0.5 |
آخر تحديث | 2014-04-24 |
تاريخ النشر | 2014-04-24 |
تقييم | 4.36/5 مجموع تقييمات 28 |
المطور | ebrehault |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/ebrehault/resurrectio/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Resurrectio", "version": "0.5", "manifest_version": 2, "description": "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.", "icons": { "48": "makina-icon.png", "128": "makina-icon-128.png" }, "browser_action": { "default_icon": "makina-icon.png", "default_popup": "control.html", "default_title": "CasperJS test recorder" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "background", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "recorder.js" ] } ], "offline_enabled": true, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |