Resurrectio

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

Resurrectio là gì?

Resurrectio là một tiện ích mở rộng Chrome được phát triển bởi ebrehault, và tính năng chính của nó là "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Resurrectio

Tải xuống các tệp mở rộng Resurrectio dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Resurrectio Resurrectio
ID kicncbplfjgjlliddogifpohdhkbjogm
URL Chính Thức https://chromewebstore.google.com/detail/resurrectio/kicncbplfjgjlliddogifpohdhkbjogm
Mô tả Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
Kích Thước Tệp 50.93 KB
Số Lần Cài Đặt 1,785
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2014-04-24
Ngày Phát Hành 2014-04-24
Đánh Giá 4.36/5 Tổng số 28 Đánh Giá
Nhà Phát Triển ebrehault
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/ebrehault/resurrectio/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
}