Test Recorder

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

Qu'est-ce que Test Recorder ?

Test Recorder est une extension Chrome développée par Nikos Katsikanis, et sa fonction principale est "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Test Recorder

Téléchargez les fichiers d'extension Test Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
URL Officiel https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Description The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Taille du Fichier 47.3 KB
Nombre d'Installations 223
Version Actuelle 0.4.3
Dernière Mise à Jour 2017-12-02
Date de Publication 2017-12-02
Évaluation 4.00/5 Total 7 Évaluations
Développeur Nikos Katsikanis
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}