VBot Recorder
Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
Apa itu VBot Recorder?
VBot Recorder adalah ekstensi Chrome yang dikembangkan oleh http://vbot.io, dan fitur utamanya adalah "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi VBot Recorder
Unduh file ekstensi VBot Recorder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | nngcjjhpjbaofdokebbcgcnkeebnidij |
URL Resmi | https://chrome.google.com/webstore/detail/vbot-recorder/nngcjjhpjbaofdokebbcgcnkeebnidij |
Deskripsi | Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests. |
Ukuran File | 122 KB |
Jumlah Instalasi | 108 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2019-03-08 |
Tanggal Publikasi | 2019-03-08 |
Penilaian | 1.00/5 Total 2 Penilaian |
Pengembang | http://vbot.io |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://vbot.io |
URL Halaman Bantuan | https://github.com/katat/vbot |
Bahasa yang Didukung | 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'" } |