Test Recorder

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

Τι είναι το Test Recorder;

Το Test Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nikos Katsikanis, και η κύρια λειτουργία του είναι "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Test Recorder

Λήψη αρχείων επέκτασης Test Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
Επίσημο URL https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Περιγραφή The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Μέγεθος Αρχείου 47.3 KB
Αριθμός Εγκαταστάσεων 223
Τρέχουσα Έκδοση 0.4.3
Τελευταία Ενημέρωση 2017-12-02
Ημερομηνία Δημοσίευσης 2017-12-02
Αξιολόγηση 4.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Nikos Katsikanis
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}