Auto Puppet
Generate Puppeteer Testcases
Auto Puppet란 무엇입니까?
Auto Puppet은(는) https://sites.google.com/view/autopuppet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate Puppeteer Testcases"입니다.
확장 프로그램 스크린샷
Auto Puppet 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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:\/\/*\/*", " |