Test Recorder

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

Vad är Test Recorder?

Test Recorder är en Chrome-tillägg utvecklad av Nikos Katsikanis, och dess huvudfunktion är "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Tilläggsskärmbilder

screenshot

Ladda ner Test Recorder-förlängningens CRX-fil

Ladda ner Test Recorder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
Officiell webbadress https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Beskrivning The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Filstorlek 47.3 KB
Antal Installationer 223
Aktuell Version 0.4.3
Senast Uppdaterad 2017-12-02
Publiceringsdatum 2017-12-02
Betyg 4.00/5 Totalt 7 Betyg
Utvecklare Nikos Katsikanis
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}