Test Recorder

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

Cos'è Test Recorder?

Test Recorder è un'estensione di Chrome sviluppata da Nikos Katsikanis, e la sua funzione principale è "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Test Recorder

Scarica i file di estensione Test Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
URL Ufficiale https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Descrizione The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Dimensione del File 47.3 KB
Conteggio Installazioni 223
Versione Corrente 0.4.3
Ultimo Aggiornamento 2017-12-02
Data di Pubblicazione 2017-12-02
Valutazione 4.00/5 Totale 7 Valutazioni
Sviluppatore Nikos Katsikanis
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}