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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}