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.」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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'"
} | |