Test Recorder

The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.

¿Qué es Test Recorder?

Test Recorder es una extensión de Chrome desarrollada por Nikos Katsikanis, y su función principal es "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Test Recorder

Descarga archivos de extensión Test Recorder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The test-recorder records acceptance tests for the Ember-cli, Nightwatch and Chromeless (WIP) testing frameworks.

IMPORTANT, restart chrome in order to get this to work, I will see if I can get it to work immediately at some point.
Also to make this simple to use I have enabled it for all sites. If you don't feel comfortable in this, you can download it from GitHub and compile it into your project locally.

This project records the ways you interact with your application and then generates the code to playback these actions inside an acceptance test runner. The idea is to save you time writing these tests by hand.

Code is at https://github.com/QuantumInformation/test-recorder, please raise any issues there.                    

Información Básica de la Extensión

Nombre Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
URL Oficial https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Descripción The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Tamaño del Archivo 47.3 KB
Cantidad de Instalaciones 223
Versión Actual 0.4.3
Última Actualización 2017-12-02
Fecha de Publicación 2017-12-02
Calificación 4.00/5 Total de 7 Calificaciones
Desarrollador Nikos Katsikanis
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Test Recorder",
    "description": " The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.",
    "version": "0.4.3",
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "test-recorder.js"
            ]
        }
    ]
}