Fd Cypress Recorder

Fd Cypress Recorder captures user interactions and generates Cypress test code.

Τι είναι το Fd Cypress Recorder;

Το Fd Cypress Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Willem Liu, και η κύρια λειτουργία του είναι "Fd Cypress Recorder captures user interactions and generates Cypress test code.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        *** DEPRECATED: THIS PLUGIN WILL NOT BE UPDATED TO MANIFEST V3 AND IS EXPECTED TO STOP WORKING AS SOON AS MANIFEST V3 ROLLS OUT ***

Fd Cypress Recorder captures user interactions and generates Cypress test code.

End-to-end tests can become obsolete fast because of changing products which makes maintenance of such tests a time-consuming and high-effort job. This plugin makes it easier to both create and maintain said tests.
It does this by allowing you to create templates from your interactions with the web page. These templates can then be used in your other tests by loading the template and start from there or appending a template to your current test.
You can re-order/remove the events/interactions as you see fit.
Multiple templates can be combined to create a single larger test. Useful for steps you need to repeat often for many of your tests.

If your website requires specific HTTP headers you can also enter this in the plugin and they will be included in the generated code.

There is a Basic Auth support which will include environment variables into the basic auth setup of Cypress. You simply have to set the environment variables on your test runner and the generated Cypress code from this plugin will make use of it.

Fd Cypress Recorder allows you to easily create Cypress end-to-end tests without having to type any code.

Cypress code is automatically generated via the functions provided by the plugin.

Follow the light/dark theme settings of your browser.                    

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

Όνομα Fd Cypress Recorder Fd Cypress Recorder
ID amleackadkomdccpbfginhnecfhhognj
Επίσημο URL https://chromewebstore.google.com/detail/fd-cypress-recorder/amleackadkomdccpbfginhnecfhhognj
Περιγραφή Fd Cypress Recorder captures user interactions and generates Cypress test code.
Μέγεθος Αρχείου 348 KB
Αριθμός Εγκαταστάσεων 452
Τρέχουσα Έκδοση 0.23
Τελευταία Ενημέρωση 2021-11-24
Ημερομηνία Δημοσίευσης 2020-02-02
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Willem Liu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/FDMediagroep/fd-cypress-recorder
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/FDMediagroep/fd-cypress-recorder/issues
URL της Σελίδας Πολιτικής Απορρήτου https://www.willemliu.nl/privacy/extensions/privacy.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fd Cypress Recorder",
    "version": "0.23",
    "description": "Fd Cypress Recorder captures user interactions and generates Cypress test code.",
    "author": {
        "name": "Willem Liu",
        "url": "https:\/\/www.willemliu.nl"
    },
    "icons": {
        "48": "48x48.png",
        "64": "64x64.png",
        "72": "72x72.png",
        "96": "96x96.png",
        "128": "128x128.png",
        "144": "144x144.png",
        "168": "168x168.png",
        "192": "192x192.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "48x48.png",
            "64": "64x64.png",
            "72": "72x72.png",
            "96": "96x96.png",
            "128": "128x128.png",
            "144": "144x144.png",
            "168": "168x168.png",
            "192": "192x192.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/",
        "storage",
        "debugger",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}