Auto Puppet
Generate Puppeteer Testcases
Auto Puppet क्या है?
Auto Puppet https://sites.google.com/view/autopuppet द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate Puppeteer Testcases"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Puppet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*", " |