Test Recorder

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

Wat is Test Recorder?

Test Recorder is een Chrome-extensie ontwikkeld door Nikos Katsikanis, en de belangrijkste functie is "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Test Recorder

Download Test Recorder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
Officiële URL https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Beschrijving The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Bestandsgrootte 47.3 KB
Aantal Installaties 223
Huidige Versie 0.4.3
Laatst Bijgewerkt 2017-12-02
Publicatiedatum 2017-12-02
Beoordeling 4.00/5 Totaal 7 Beoordelingen
Ontwikkelaar Nikos Katsikanis
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}