E2E Test Builder

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

Cos'è E2E Test Builder?

E2E Test Builder è un'estensione di Chrome sviluppata da Cuubas, e la sua funzione principale è "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione E2E Test Builder

Scarica i file di estensione E2E Test Builder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Partial alternative to Selenium IDE Firefox extension. 

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

Informazioni di Base sull'Estensione

Nome E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
URL Ufficiale https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
Descrizione An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Dimensione del File 509 KB
Conteggio Installazioni 306
Versione Corrente 1.4.1
Ultimo Aggiornamento 2022-10-10
Data di Pubblicazione 2019-01-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Cuubas
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cuubas/e2e-test-builder
URL della Pagina di Aiuto https://github.com/cuubas/e2e-test-builder/issues
Lingue Supportate 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"
    ]
}