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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
            ]
        }
    ]
}