Cypress Recorder
Records a user session and generates cypress code for automation and testing purposes.
Что такое Cypress Recorder?
Cypress Recorder - это расширение Chrome, разработанное KabaLabs, и его основная функция - "Records a user session and generates cypress code for automation and testing purposes.".
Снимки экрана расширения
Скачать файл CRX расширения Cypress Recorder
Скачайте файлы расширений Cypress Recorder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Cypress Recorder Cypress Recorder is a developer tool that records user interaction within a web application and generates Cypress scripts to allow the developer to replicate that particular session. This will speed up your development cycle by facilitating the creation of unit and integration tests. Getting Started Click 'Add to Chrome'. That's it! Once you see our icon at the upper-right of your browser window, you are ready to start generating Cypress scripts. Features This extension will allow you to: * Record clicks, typing, submits, and navigation in the browser. * See the scripts render live as they are generated. * Delete accidental actions. * Reorder actions as necessary. * Pause and resume recording within a single session. * Record navigation within a domain. * Copy the generated code to your clipboard. Usage * Open the extension and click 'Start Recording' to begin recording actions. * Click links, submit forms, etc. * Check your saved actions by opening the popup at any time. * Click 'Stop Recording' to stop recording. From there, you will have the option to resume recording, reset, or copy your generated code to your clipboard. * You can also use keyboard shortcuts: On Macs: - ctrl + R to start and stop recording - ctrl + G to reset On PCs and Linux: - alt + R to start and stop recording - alt + G to reset Authors Abbey Campbell | https://github.com/abbeycampbell Bradley Morgan | https://github.com/bkmorgan3 Ken Sakuma | https://github.com/gxcad Adam Stover | https://github.com/adam-stover We welcome contributions to this project! Check us out on Github: https://github.com/KabaLabs/Cypress-Recorder
Основная информация о расширении
Название | Cypress Recorder |
ID | glcapdcacdfkokcmicllhcjigeodacab |
Официальный URL | https://chromewebstore.google.com/detail/cypress-recorder/glcapdcacdfkokcmicllhcjigeodacab |
Описание | Records a user session and generates cypress code for automation and testing purposes. |
Размер файла | 202 KB |
Количество установок | 20,000 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2021-10-19 |
Дата публикации | 2020-06-28 |
Рейтинг | 4.82/5 Всего 11 оценок |
Разработчик | KabaLabs |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/KabaLabs/Cypress-Recorder/ |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cypress Recorder", "short_name": "Cypress Rec", "version": "1.1.0", "description": "Records a user session and generates cypress code for automation and testing purposes.", "manifest_version": 2, "permissions": [ "activeTab", "storage", "webNavigation" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": ".\/cypresscone16.png", "32": ".\/cypresscone32.png", "48": ".\/cypresscone48.png", "128": ".\/cypresscone128.png" }, "author": "Abbey Campbell, Adam Stover, Brad Morgan, Ken Sakuma", "background": { "scripts": [ ".\/background\/background.js" ], "persistent": false }, "browser_action": { "default_icon": ".\/cypressconeICON.png", "default_popup": ".\/popup\/index.html" }, "options_ui": { "page": ".\/options\/index.html", "chrome_style": true }, "commands": { "start-recording": { "suggested_key": { "default": "Alt+R", "mac": "MacCtrl+R", "linux": "Alt+R" }, "description": "Toggle recording" }, "reset-recording": { "suggested_key": { "default": "Alt+G", "mac": "MacCtrl+G", "linux": "Alt+G" }, "description": "Reset recording" } } } |