DeploySentinel Recorder

Record browser interactions to auto generate Cypress, Playwright and Puppeteer test scripts.

Τι είναι το DeploySentinel Recorder;

Το DeploySentinel Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://deploysentinel.com, και η κύρια λειτουργία του είναι "Record browser interactions to auto generate Cypress, Playwright and Puppeteer test scripts.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DeploySentinel Recorder

Λήψη αρχείων επέκτασης DeploySentinel Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Simply step through your website while recording with DeploySentinel Recorder and the extension will convert the captured user flow into a Cypress, Playwright or Puppeteer script.

✨ Features

- 💻  Automatically capture clicks, keyboard inputs, window resizes, and scroll events.
- 🤖 Generate clean and commented scripts for Cypress, Playwright and Puppeteer.
- 📋 Preview recording progress and copy generated scripts mid-test to clipboard.
- 📛 Generate element selectors using `id` and `class` as well as other HTML properties (ex. `aria-label`, `alt`, `name`, `data-testid`)
- 🖱 Capture hover events via context menu option (right-click)
- ✅ Assert/wait for specific text to be visible on the page
- 📸 Generate full page screenshot events

✨ Getting Started

1. Visit the site you want to start recording from
2. Click the extension icon and click "Start Recording from Current Tab"
3. Use the site as you would normally (click links, fill forms, etc.) Right-click an element and select "Record hover over element" to record a hover event over an element.
4. Click "End Test" whenever you are done. You can copy the generated script via the recording overlay.
5. Click the extension icon and select "View Last Recording" to access the last recorded test any time afterwards.

Pro tip: To view captured steps or generated code mid-recording, click "Show More" in the recording overlay.

Learn more from the docs: https://www.deploysentinel.com/docs/recorder

Have feedback or want to contribute improvements? View this extension on Github: https://github.com/DeploySentinel/Recorder                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DeploySentinel Recorder DeploySentinel Recorder
ID geggbdbnidkhbnbjoganapfhkpgkndfo
Επίσημο URL https://chromewebstore.google.com/detail/deploysentinel-recorder/geggbdbnidkhbnbjoganapfhkpgkndfo
Περιγραφή Record browser interactions to auto generate Cypress, Playwright and Puppeteer test scripts.
Μέγεθος Αρχείου 686 KB
Αριθμός Εγκαταστάσεων 3,000
Τρέχουσα Έκδοση 0.7.1
Τελευταία Ενημέρωση 2022-07-27
Ημερομηνία Δημοσίευσης 2021-11-15
Αξιολόγηση 4.88/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://deploysentinel.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://deploysentinel.com/recorder
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.7.1",
    "manifest_version": 3,
    "name": "DeploySentinel Recorder",
    "description": "Record browser interactions to auto generate Cypress, Playwright and Puppeteer test scripts.",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "Icon32.png"
    },
    "icons": {
        "32": "Icon32.png",
        "128": "Icon128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "contextMenus",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.deploysentinel.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.deploysentinel.com\/*"
            ],
            "js": [
                "bridge.bundle.js"
            ]
        },
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "bridge.bundle.js"
            ]
        }
    ]
}