E2E Test Builder

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

Was ist E2E Test Builder?

E2E Test Builder ist eine Chrome-Erweiterung, die von Cuubas entwickelt wurde, und ihr Hauptmerkmal ist "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.".

Erweiterungsscreenshots

screenshot
screenshot

E2E Test Builder-Erweiterungs-CRX-Datei herunterladen

Laden Sie E2E Test Builder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Partial alternative to Selenium IDE Firefox extension. 

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

Grundlegende Informationen zur Erweiterung

Name E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
Offizielle URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
Beschreibung An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Dateigröße 509 KB
Installationsanzahl 306
Aktuelle Version 1.4.1
Letztes Update 2022-10-10
Veröffentlichungsdatum 2019-01-22
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Cuubas
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/cuubas/e2e-test-builder
Hilfeseite URL https://github.com/cuubas/e2e-test-builder/issues
Unterstützte Sprachen 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"
    ]
}