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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}