Resurrectio

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

O que é Resurrectio?

Resurrectio é uma extensão do Chrome desenvolvida por ebrehault, e sua principal característica é "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Resurrectio

Baixe arquivos de extensão Resurrectio no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Resurrectio Resurrectio
ID kicncbplfjgjlliddogifpohdhkbjogm
URL Oficial https://chromewebstore.google.com/detail/resurrectio/kicncbplfjgjlliddogifpohdhkbjogm
Descrição Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
Tamanho do Arquivo 50.93 KB
Contagem de Instalações 1,785
Versão Atual 0.5
Última Atualização 2014-04-24
Data de Publicação 2014-04-24
Classificação 4.36/5 Total de 28 Avaliações
Desenvolvedor ebrehault
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/ebrehault/resurrectio/issues
Idiomas Suportados 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'"
}