VBot Recorder

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

Was ist VBot Recorder?

VBot Recorder ist eine Chrome-Erweiterung, die von http://vbot.io entwickelt wurde, und ihr Hauptmerkmal ist "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

VBot Recorder-Erweiterungs-CRX-Datei herunterladen

Laden Sie VBot Recorder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name VBot Recorder VBot Recorder
ID nngcjjhpjbaofdokebbcgcnkeebnidij
Offizielle URL https://chrome.google.com/webstore/detail/vbot-recorder/nngcjjhpjbaofdokebbcgcnkeebnidij
Beschreibung Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
Dateigröße 122 KB
Installationsanzahl 108
Aktuelle Version 1.1
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler http://vbot.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://vbot.io
Hilfeseite URL https://github.com/katat/vbot
Unterstützte Sprachen 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'"
}