Test Recorder

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

Test Recorder là gì?

Test Recorder là một tiện ích mở rộng Chrome được phát triển bởi Nikos Katsikanis, và tính năng chính của nó là "The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Test Recorder

Tải xuống các tệp mở rộng Test Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Test Recorder Test Recorder
ID mehbmedddkpilcbbjcichiopegameghh
URL Chính Thức https://chrome.google.com/webstore/detail/test-recorder/mehbmedddkpilcbbjcichiopegameghh
Mô tả The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.
Kích Thước Tệp 47.3 KB
Số Lần Cài Đặt 223
Phiên Bản Hiện Tại 0.4.3
Cập Nhật Lần Cuối 2017-12-02
Ngày Phát Hành 2017-12-02
Đánh Giá 4.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Nikos Katsikanis
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}