Auto Puppet
Generate Puppeteer Testcases
Auto Puppet là gì?
Auto Puppet là một tiện ích mở rộng Chrome được phát triển bởi https://sites.google.com/view/autopuppet, và tính năng chính của nó là "Generate Puppeteer Testcases".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Auto Puppet
Tải xuống các tệp mở rộng Auto Puppet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This tool can generate, edit and update Puppeteer test-cases for automation. Useful to QA for generating functional test-cases replacing Selenium and Java based test cases. The generated test-cases will be coded in Javascript using Mocha, Chai, Resemble and Puppeteer libraries. Testcases can be easily setup in Jenkins. Testcases can run on all possible operating system This also support screenshot assertions using ResembleJS apart from DOM assertions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ojgcnlkomdkdgldhpbkeofpebalknhhk |
URL Chính Thức | https://chrome.google.com/webstore/detail/auto-puppet/ojgcnlkomdkdgldhpbkeofpebalknhhk |
Mô tả | Generate Puppeteer Testcases |
Kích Thước Tệp | 613 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2018-09-27 |
Ngày Phát Hành | 2018-09-27 |
Nhà Phát Triển | https://sites.google.com/view/autopuppet |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/akhadir/autoto/blob/master/README.md |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Puppet", "description": "Generate Puppeteer Testcases", "version": "0.1", "minimum_chrome_version": "10.0", "browser_action": { "default_icon": "icon.png", "default_title": "Generate Testcases here!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "extJs\/jquery.js", "extJs\/html2canvas.js", "chromeJs\/inject.js" ], "run_at": "document_start" } ], "devtools_page": "devtools.html", "background": { "scripts": [ "chromeJs\/bgNew.js" ] }, "permissions": [ "debugger", "activeTab", "webRequest", "background", "tabs", "storage", "file:\/\/*\/*", "https:\/\/*\/", "https:\/\/*\/*", "http:\/\/*\/", "http:\/\/*\/*", " |