VBot Recorder

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

Cos'è VBot Recorder?

VBot Recorder è un'estensione di Chrome sviluppata da http://vbot.io, e la sua funzione principale è "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione VBot Recorder

Scarica i file di estensione VBot Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome VBot Recorder VBot Recorder
ID nngcjjhpjbaofdokebbcgcnkeebnidij
URL Ufficiale https://chrome.google.com/webstore/detail/vbot-recorder/nngcjjhpjbaofdokebbcgcnkeebnidij
Descrizione Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
Dimensione del File 122 KB
Conteggio Installazioni 108
Versione Corrente 1.1
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore http://vbot.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://vbot.io
URL della Pagina di Aiuto https://github.com/katat/vbot
Lingue Supportate 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'"
}