Test Recorder

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

Co je Test Recorder?

Test Recorder je rozšíření Chrome vyvinuté Nikos Katsikanis, a jeho hlavní funkcí je „The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Test Recorder

Stáhněte si soubory rozšíření Test Recorder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
Oficiální URL https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Popis The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Velikost souboru 47.3 KB
Počet instalací 223
Aktuální Verze 0.4.3
Poslední Aktualizace 2017-12-02
Datum Vydání 2017-12-02
Hodnocení 4.00/5 Celkem 7 Hodnocení
Vývojář Nikos Katsikanis
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}