Resurrectio
Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.
Что такое Resurrectio?
Resurrectio - это расширение Chrome, разработанное ebrehault, и его основная функция - "Functional-oriented and javascript-friendly test recorder. Exports CasperJS scripts. Supports screenshots.".
Снимки экрана расширения
Скачать файл CRX расширения Resurrectio
Скачайте файлы расширений 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 |
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'" } |