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.”。
扩展截图
下载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
扩展基本信息
名称 | |
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'" } |