VBot Recorder

Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.

ما هو VBot Recorder؟

VBot Recorder هو إضافة Chrome تم تطويرها بواسطة http://vbot.io، والميزة الرئيسية لها هي "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة VBot Recorder

قم بتنزيل ملفات الامتداد VBot Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Verify your code by snapshots.

VBot Recorder is an extension to automatically record interactions inside a web page and quickly generate playbook JSON, aka test steps.

It is a visual regression testing library/tool, aims to quickly automate browser-based tests with minimum development overhead.

You can run the tests on vbot.io  setups, or with frameworks like mocha and its command line tool to test locally and flexibly. It will execute the tests automatically and compare the snapshots between the new test and baseline.

For more details, please go to https://vbot.io, or refer to its open source github repository https://github.com/katat/vbot                    

معلومات أساسية عن التمديد

الاسم VBot Recorder VBot Recorder
ID nngcjjhpjbaofdokebbcgcnkeebnidij
عنوان URL الرسمي https://chrome.google.com/webstore/detail/vbot-recorder/nngcjjhpjbaofdokebbcgcnkeebnidij
الوصف Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
حجم الملف 122 KB
عدد التثبيتات 108
النسخة الحالية 1.1
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 1.00/5 مجموع تقييمات 2
المطور http://vbot.io
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://vbot.io
عنوان صفحة المساعدة https://github.com/katat/vbot
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VBot Recorder",
    "short_name": "vbot",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.",
    "icons": {
        "48": ".\/res\/image\/icon.png",
        "128": ".\/res\/image\/icon.png"
    },
    "browser_action": {
        "default_icon": ".\/res\/image\/icon.png",
        "default_popup": ".\/html\/control.html",
        "default_title": "vbot recorder"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "background",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "**.css",
        "**.html",
        "**.js",
        "**.png",
        "**.gif",
        "**.map"
    ],
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}