Resurrectio

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

什么是Resurrectio?

Resurrectio是由ebrehault开发的Chrome扩展程序,该扩展的主要功能是“Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.”。

扩展截图

screenshot

下载Resurrectio扩展crx文件

下载Resurrectio扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        "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 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'"
}