Auto Puppet
Generate Puppeteer Testcases
什么是Auto Puppet?
Auto Puppet是由https://sites.google.com/view/autopuppet开发的Chrome扩展程序,该扩展的主要功能是“Generate Puppeteer Testcases”。
扩展截图
下载Auto Puppet扩展crx文件
下载Auto Puppet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | ojgcnlkomdkdgldhpbkeofpebalknhhk |
官方URL | https://chrome.google.com/webstore/detail/auto-puppet/ojgcnlkomdkdgldhpbkeofpebalknhhk |
简介 | Generate Puppeteer Testcases |
文件大小 | 613 KB |
安装次数 | 49 |
当前版本 | 0.1 |
更新时间 | 2018-09-27 |
上架时间 | 2018-09-27 |
开发者 | https://sites.google.com/view/autopuppet |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/akhadir/autoto/blob/master/README.md |
支持的语言 | 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:\/\/*\/*", " |