VBot Recorder
Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests.
VBot Recorderคืออะไร?
VBot Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://vbot.io และคุณลักษณะหลักของมันคือ "Automatically record UI interactions and quickly generate playbook JSON for VBot to do visual regression tests."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VBot Recorder
ดาวน์โหลดไฟล์ส่วนขยาย 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'" } |