Auto Puppet
Generate Puppeteer Testcases
Что такое Auto Puppet?
Auto Puppet - это расширение Chrome, разработанное https://sites.google.com/view/autopuppet, и его основная функция - "Generate Puppeteer Testcases".
Снимки экрана расширения
Скачать файл CRX расширения Auto Puppet
Скачайте файлы расширений 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:\/\/*\/*", " |