Resurrectio
Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
Resurrectio क्या है?
Resurrectio ebrehault द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Resurrectio एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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'" } |