Test Recorder

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

Apa itu Test Recorder?

Test Recorder adalah ekstensi Chrome yang dikembangkan oleh Nikos Katsikanis, dan fitur utamanya adalah "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Test Recorder

Unduh file ekstensi Test Recorder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
URL Resmi https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Deskripsi The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Ukuran File 47.3 KB
Jumlah Instalasi 223
Versi Saat Ini 0.4.3
Terakhir Diperbarui 2017-12-02
Tanggal Publikasi 2017-12-02
Penilaian 4.00/5 Total 7 Penilaian
Pengembang Nikos Katsikanis
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}