Test Recorder

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

什么是Test Recorder?

Test Recorder是由Nikos Katsikanis开发的Chrome扩展程序,该扩展的主要功能是“The test-recorder records acceptance tests for the Ember-cli and Nightwatch testing frameworks.”。

扩展截图

screenshot

下载Test Recorder扩展crx文件

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