E2E Test Builder

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

Co je E2E Test Builder?

E2E Test Builder je rozšíření Chrome vyvinuté Cuubas, a jeho hlavní funkcí je „An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření E2E Test Builder

Stáhněte si soubory rozšíření E2E Test Builder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Partial alternative to Selenium IDE Firefox extension. 

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

Základní Informace o Rozšíření

Název E2E Test Builder E2E Test Builder
ID pamfkepooglpdkepmlopejpmcpggaobo
Oficiální URL https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo
Popis An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
Velikost souboru 509 KB
Počet instalací 306
Aktuální Verze 1.4.1
Poslední Aktualizace 2022-10-10
Datum Vydání 2019-01-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Cuubas
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/cuubas/e2e-test-builder
URL Stránky Nápovědy https://github.com/cuubas/e2e-test-builder/issues
Podporované Jazyky 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"
    ]
}