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によって開発されたChromeの拡張機能で、その主な機能は「Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

VBot Recorder拡張機能のCRXファイルをダウンロード

VBot Recorder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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'"
}