E2E Test Builder

An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.

Τι είναι το E2E Test Builder;

Το E2E Test Builder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cuubas, και η κύρια λειτουργία του είναι "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης E2E Test Builder

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

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

                        Partial alternative to Selenium IDE Firefox extension. 

For more information/issues/feature requests please refer to GitHub repository.                    

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

Όνομα E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
Επίσημο URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
Περιγραφή An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Μέγεθος Αρχείου 509 KB
Αριθμός Εγκαταστάσεων 306
Τρέχουσα Έκδοση 1.4.1
Τελευταία Ενημέρωση 2022-10-10
Ημερομηνία Δημοσίευσης 2019-01-22
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Cuubas
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/cuubas/e2e-test-builder
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/cuubas/e2e-test-builder/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "E2E Test Builder",
    "description": "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.",
    "version": "1.4.1",
    "browser_action": {
        "default_icon": "assets\/[email protected]"
    },
    "icons": {
        "16": "assets\/[email protected]",
        "32": "assets\/[email protected]",
        "48": "assets\/[email protected]",
        "128": "assets\/[email protected]",
        "256": "assets\/[email protected]",
        "512": "assets\/[email protected]"
    },
    "background": {
        "scripts": [
            "background\/runtime.js",
            "background\/main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content\/runtime.js",
                "content\/main.js"
            ],
            "all_frames()": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "contextMenus"
    ]
}