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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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'"
}