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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}