Puppeteer exporter for Katalon Recorder
A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…
Что такое Puppeteer exporter for Katalon Recorder?
Puppeteer exporter for Katalon Recorder - это расширение Chrome, разработанное Sam Kirkland, и его основная функция - "A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way…".
Снимки экрана расширения
Скачать файл CRX расширения Puppeteer exporter for Katalon Recorder
Скачайте файлы расширений Puppeteer exporter for Katalon Recorder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way of easily creating UI tests this is what you have been looking for. This extension is based on the "Katalon Recorder" chrome extension. In order for this plugin to work you need to have the "Katalon Recorder" extension installed.
Основная информация о расширении
Название | |
ID | idgpmhfldhpaoiflfleanildmnojchhd |
Официальный URL | https://chrome.google.com/webstore/detail/puppeteer-exporter-for-ka/idgpmhfldhpaoiflfleanildmnojchhd |
Описание | A chrome extension that allows recording your actions then exporting/replaying them as puppeteer code. If you're looking for a way… |
Размер файла | 66.5 KB |
Количество установок | 1,000 |
Текущая Версия | 2.0.0 |
Последнее Обновление | 2019-05-07 |
Дата публикации | 2019-05-07 |
Рейтинг | 3.78/5 Всего 9 оценок |
Разработчик | Sam Kirkland |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder |
URL страницы политики конфиденциальности | https://github.com/SamKirkland/Puppeteer-exporter-for-Katalon-Recorder/blob/master/Privacy-Policy.md |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Puppeteer exporter for Katalon Recorder", "version": "2.0.0", "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "alarms", "storage" ], "offline_enabled": true, "options_ui": { "page": "options.html", "open_in_tab": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |