Resurrectio

Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.

Qu'est-ce que Resurrectio ?

Resurrectio est une extension Chrome développée par ebrehault, et sa fonction principale est "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Resurrectio

Téléchargez les fichiers d'extension Resurrectio au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        "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.                    

Informations de Base sur l'Extension

Nom Resurrectio Resurrectio
ID kicncbplfjgjlliddogifpohdhkbjogm
URL Officiel https://chromewebstore.google.com/detail/resurrectio/kicncbplfjgjlliddogifpohdhkbjogm
Description Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
Taille du Fichier 50.93 KB
Nombre d'Installations 1,785
Version Actuelle 0.5
Dernière Mise à Jour 2014-04-24
Date de Publication 2014-04-24
Évaluation 4.36/5 Total 28 Évaluations
Développeur ebrehault
Type de Paiement free
URL de la Page d'Aide https://github.com/ebrehault/resurrectio/issues
Langues Prises en Charge 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'"
}