VBot Recorder
Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
Qu'est-ce que VBot Recorder ?
VBot Recorder est une extension Chrome développée par http://vbot.io, et sa fonction principale est "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension VBot Recorder
Téléchargez les fichiers d'extension VBot Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | nngcjjhpjbaofdokebbcgcnkeebnidij |
URL Officiel | https://chrome.google.com/webstore/detail/vbot-recorder/nngcjjhpjbaofdokebbcgcnkeebnidij |
Description | Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests. |
Taille du Fichier | 122 KB |
Nombre d'Installations | 108 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2019-03-08 |
Date de Publication | 2019-03-08 |
Évaluation | 1.00/5 Total 2 Évaluations |
Développeur | http://vbot.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://vbot.io |
URL de la Page d'Aide | https://github.com/katat/vbot |
Langues Prises en Charge | 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'" } |