VBot Recorder

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

VBot Recorder क्या है?

VBot Recorder http://vbot.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में VBot Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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'"
}